-
Notifications
You must be signed in to change notification settings - Fork 767
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
[SYCL] Fix vec constructors #17712
[SYCL] Fix vec constructors #17712
Conversation
// `__SYCL_USE_PREVIEW_VEC_IMPL` at that time as well. | ||
#define __SYCL_USE_PREVIEW_VEC_IMPL 0 | ||
#else | ||
#define __SYCL_USE_PREVIEW_VEC_IMPL 0 |
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.
@AlexeySachkov , any better suggestions for the naming here?
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.
One issue is that we want to preserve current/"old" version after next major release, when the meaning of "preview" would change. On the other hand, we can rename the macro at that time, maybe.
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.
One issue is that we want to preserve current/"old" version after next major release, when the meaning of "preview" would change. On the other hand, we can rename the macro at that time, maybe.
If we plan to expose the macro to users so that they could do a switch back (for whichever reason), then it is better not to rename it later, but agree on a name from the beginning - otherwise renaming would be an API change by itself.
What about something like __SYCL_USE_SYCL2020_CONFORMANT_IMPL
? I.e. indicate the intent instead of old/new where the meaning of old/new changes in time.
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.
SYCL2020 has had several different specifications for vec. I've come up with __SYCL_USE_LEGACY_VEC_IMPL
(meaning the current default). Alternatively, we can use the current major version (__SYCL_USE_SYCL8_VEC_IMPL
).
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.
@AlexeySachkov , can you take another look?
28e9326
to
48897d1
Compare
48897d1
to
f92eb90
Compare
KhronosGroup/SYCL-Docs#670 Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of intel#17712 and intel#17713. With these three pieces in place we can keep building CTS successfully, so enable this new implementation (via `__SYCL_USE_PREVIEW_VEC_IMPL`) automatically under `-fpreview-breaking-changes` mode.
KhronosGroup/SYCL-Docs#670 Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of intel#17712 and intel#17713. With these three pieces in place we can keep building CTS successfully, so enable this new implementation (via `__SYCL_USE_PREVIEW_VEC_IMPL`) automatically under `-fpreview-breaking-changes` mode.
These will be updated as I upload PRs to implement recent specification changes.
Implements KhronosGroup/SYCL-Docs#668. Note that the "test" added here is less of a documentation of "intent" but rather the documentation of the effect of the change. Also, the idea behind specification changes was to keep all "reasonable" code in the wild compiling and several changes are needed together to make that happen. Until all of them land, keep the new code out of `-fpreview-breaking-changes` mode.
f92eb90
to
a0979df
Compare
KhronosGroup/SYCL-Docs#670 Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of intel#17712 and intel#17713. With these three pieces in place we can keep building CTS successfully, so enable this new implementation (via `__SYCL_USE_PREVIEW_VEC_IMPL`) automatically under `-fpreview-breaking-changes` mode.
using sw_double_2 = decltype(std::declval<vec<double, 4>>().swizzle<1, 2>()); | ||
|
||
#if __INTEL_PREVIEW_BREAKING_CHANGES | ||
#define NOT_IN_PREVIEW ! |
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.
NIT; how about we rename this macro to something like NEGATE_IF_NOT_IN_PREVIEW
?
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.
I don't see how it would help, honestly. This isn't "! in preview", but rather simply English, like "hey this holds, except not in preview".
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.
This isn't "! in preview", but rather simply English, like "hey this holds, except not in preview".
Initially, I had the same confusion. That's why I'd have renamed this macro to NEGATE_IF_NOT_IN_PREVIEW
or something. Anyway, I don't have strong opinion on this.
KhronosGroup/SYCL-Docs#670 Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of intel#17712 and intel#17713. With these three pieces in place we can keep building CTS successfully, so enable this new implementation (via `__SYCL_USE_PREVIEW_VEC_IMPL`) automatically under `-fpreview-breaking-changes` mode.
Dev-IGC infrastructural failures are unrelated and can be seen in other PRs (e.g., https://github.com/intel/llvm/actions/runs/14201400451) |
KhronosGroup/SYCL-Docs#670 Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of intel#17712 and intel#17713.
Implements KhronosGroup/SYCL-Docs#670. Technically, we also implement part of KhronosGroup/SYCL-Docs#674 (`std::byte` as element type) here, but there is no reasonable way to make them completely independent. This is built on top of #17712 and #17713.
Implements KhronosGroup/SYCL-Docs#668.
Note that the "test" changes here are less of the documentation of "intent" but rather the documentation of the effect of the change.
Also, the idea behind specification changes was to keep all "reasonable" code in the wild compiling and several changes are needed together to make that happen. Until all of them land, keep the new code out of
-fpreview-breaking-changes
mode.