Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix formatting corrections reported by review committee #60

Merged
merged 20 commits into from
Mar 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b430704
Display define_task_block in code font
jaredhoberock Mar 27, 2018
1259dd8
Restore section nesting of P0214R9 to simd section
jaredhoberock Mar 27, 2018
d9ecfe1
Restore simd_mask section nesting of P0214R9
jaredhoberock Mar 27, 2018
1434eb3
Apply Matthias' corrections to <experimental/simd> synopsis
jaredhoberock Mar 27, 2018
aad04c4
Apply Matthias' inline corrections
jaredhoberock Mar 27, 2018
5780814
Repair some broken paragraph numbers
jaredhoberock Mar 27, 2018
7deb82b
Reorder clauses as suggested by Alisdair
jaredhoberock Mar 28, 2018
5d23571
Fix paragraph numbering as reported by Matthias
jaredhoberock Mar 28, 2018
c90ec04
Eliminate empty paragraphs reported by Matthias
jaredhoberock Mar 28, 2018
b42f44d
Replace <bl> lists with <ul> as reported by Matthias
jaredhoberock Mar 28, 2018
77d5e26
"see-below" -> "see below" as reported by Matthias
jaredhoberock Mar 28, 2018
96bca09
Eliminate find_first_set and find_last_set from 9.5.6.4 p18 as report…
jaredhoberock Mar 28, 2018
b39489a
Nest simd_mask non-member operations section underneath Data-Parallel…
jaredhoberock Mar 28, 2018
0495e8e
Italicize "reductions" in synopsis as reported by Marshall
jaredhoberock Mar 28, 2018
3513815
Give notes their own paragraphs and fix indentation of copy_to as rep…
jaredhoberock Mar 28, 2018
f4e375a
Convert named reference into a section number as reported by Marshall
jaredhoberock Mar 28, 2018
8a72e9f
Eliminate note about reduce as reported by Marshall & Matthias
jaredhoberock Mar 28, 2018
d18aa98
Eliminate redundant comment
jaredhoberock Mar 28, 2018
10c6ff3
Convert a named reference into a section number
jaredhoberock Mar 28, 2018
2c4f75a
Update README with acknowledgements
jaredhoberock Mar 28, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ NYYYY is document NXXXX reformatted as a PDTS draft document.

* Apply the proposed wording in [P0214R9](https://wg21.link/P0214R9) (Data-Parallel Vector Types & Operations).

## Editorial Changes

* Reordered Execution Policy and Parallel Exceptions clauses.
* Various typographical corrections.

# Acknowledgements

Thanks to Alisdair Meredith for suggesting editorial changes.
Thanks to Alisdair Meredith, Matthias Kretz, and Marshall Clow for reviewing and suggesting editorial changes.

6 changes: 2 additions & 4 deletions algorithms.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>Wavefront Application</h1>
</ul>

<cxx-note>This includes evaluations occurring in function invocations.</cxx-note>
</p>
<!-/p ->

<p>
An evaluation A is <i>ordered before</i> an evaluation B if A is deterministically
Expand Down Expand Up @@ -56,7 +56,7 @@ <h1>Wavefront Application</h1>
Informally, A is a vertical antecedent of B if A is sequenced immediately before B or A is nested zero or
more levels within a statement S that immediately precedes B.
</cxx-note>
</p>
<!-/p ->

<p>
In the following, <i>X<sub>i</sub></i> and <i>X<sub>j</sub></i> refer to evaluations of the <i>same</i> expression
Expand All @@ -78,7 +78,6 @@ <h1>Wavefront Application</h1>
<cxx-note>
<i>Horizontally matched</i> establishes a theoretical <i>lock-step</i> relationship between evaluations in different applications of an element access function.
</cxx-note>
</p>

<p>
Let <i>f</i> be a function called for each argument list in a sequence of argument lists.
Expand All @@ -97,7 +96,6 @@ <h1>Wavefront Application</h1>
<cxx-note>
The relationships between A<sub>i</sub> and B<sub>i</sub> and between A<sub>j</sub> and B<sub>j</sub> are <i>sequenced before</i>, not <i>vertical antecedent</i>.
</cxx-note>
</p>
</cxx-section>

<cxx-section id="parallel.alg.ops">
Expand Down
Loading