-
Notifications
You must be signed in to change notification settings - Fork 788
[SYCL][Doc] Minor fixes to local_memory extension text #2621
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -56,16 +56,16 @@ products. | |||||
== Version | ||||||
|
||||||
Built On: {docdate} + | ||||||
Revision: 1 | ||||||
Revision: 2 | ||||||
|
||||||
== Contact | ||||||
|
||||||
John Pennycook, Intel (john 'dot' pennycook 'at' intel 'dot' com) | ||||||
John Pennycook, Intel (john 'dot' pennycook 'at' intel 'dot' com) + | ||||||
Roland Schulz, Intel (roland 'dot' schulz 'at' intel 'dot' com) | ||||||
|
||||||
== Contributors | ||||||
|
||||||
Felipe de Azevedo Piovezan, Intel | ||||||
Felipe de Azevedo Piovezan, Intel + | ||||||
Michael Kinsner, Intel | ||||||
|
||||||
== Dependencies | ||||||
|
@@ -191,13 +191,11 @@ extension.] | |||||
multi_ptr<T, Group::address_space> group_local_memory_for_overwrite(Group g)` | | ||||||
Constructs an object of type `T` in an address space accessible by all | ||||||
work-items in group _g_, using default initialization. The object is | ||||||
initialized pon or before the first call to `group_local_memory`. The storage | ||||||
default initialized on or before the first call to `group_local_memory`. The storage | ||||||
for the object is allocated upon or before the first call to | ||||||
`group_local_memory`, and deallocated when all work-items in the group have | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
completed execution of the kernel. | ||||||
|
||||||
All arguments in _args_ must be the same for all work-items in the group. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you mean to remove this line? |
||||||
|
||||||
`Group` must be `sycl::group`, and `T` must be trivially destructible. | ||||||
[_Note_ - These restrictions may be lifted in a future version of this | ||||||
extension.] | ||||||
|
@@ -216,6 +214,7 @@ None. | |||||
|======================================== | ||||||
|Rev|Date|Author|Changes | ||||||
|1|2020-08-18|John Pennycook|*Initial public working draft* | ||||||
|2|2020-10-09|Mike Kinsner|Fix minor text errors | ||||||
|======================================== | ||||||
|
||||||
//************************************************************************ | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.