-
Notifications
You must be signed in to change notification settings - Fork 801
[SYCL] Handler-less kernel submit path (range based) #20912
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
base: sycl
Are you sure you want to change the base?
Conversation
| nd_range_view &operator=(const nd_range_view &Desc) = default; | ||
| nd_range_view &operator=(nd_range_view &&Desc) = default; | ||
|
|
||
| template <int Dims_> |
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.
shouldn't these be templated with <size_t Dims_> instead of int ? Then we won't need the cast.
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.
+1. And also nd_range_view implies view of sycl::nd_range, not sycl::range. I think we should have an anologous range_view as well.
Extend the handler-less kernel submission path to sycl::range based functions.