-
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
Conversation
Signed-off-by: Michael Kinsner <[email protected]>
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 | ||
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean to remove this line?
@@ -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 comment
The reason will be displayed to describe this comment to others. Learn more.
`group_local_memory`, and deallocated when all work-items in the group have | |
`group_local_memory_for_overwrite`, and deallocated when all work-items in the group have |
@@ -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 |
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.
default initialized on or before the first call to `group_local_memory`. The storage | |
default initialized on or before the first call to `group_local_memory_for_overwrite`. The storage |
[benchmarks] use manifest to build compute-runtime dependencies
[benchmarks] use manifest to build compute-runtime dependencies
Signed-off-by: Michael Kinsner [email protected]