-
Notifications
You must be signed in to change notification settings - Fork 75
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
Disable test not supported by SYCL #2468
Disable test not supported by SYCL #2468
Conversation
637fab2
to
db249b5
Compare
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.
Note that most of these changes are simply due to a different indentation.
db249b5
to
f89e178
Compare
@fwyzard Change the output function to |
f89e178
to
b68618e
Compare
Done
No, I haven't. |
If you don't want to solve in near time, it would be good if you open one with the description of this PR. Personally I prefer open issues for existing problem than looking in comments of closed pull requests. |
|
According to the documentation of the SYCL Group functions 1 and SYCL Group algorithms library 2, calling
sycl::all_of_group
with some threads having exited the kernel is undefined behaviour. This was confirmed during a support meeting with Intel.oneAPI has an extension to support non-uniform (sub)groups: sycl_ext_oneapi_non_uniform_groups.
The implementation of the SYCL warp functions should be extended using it; until then, we disable the failing test when using a SYCL back-end and instead print an informational message.