Skip to content
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

Merged
merged 8 commits into from
Apr 1, 2025
Merged

Conversation

aelovikov-intel
Copy link
Contributor

@aelovikov-intel aelovikov-intel commented Mar 28, 2025

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.

// `__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
Copy link
Contributor Author

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?

Copy link
Contributor Author

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.

Copy link
Contributor

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.

Copy link
Contributor Author

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).

Copy link
Contributor Author

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?

aelovikov-intel added a commit to aelovikov-intel/llvm that referenced this pull request Mar 28, 2025
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.
aelovikov-intel added a commit to aelovikov-intel/llvm that referenced this pull request Mar 28, 2025
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.
aelovikov-intel added a commit to aelovikov-intel/llvm that referenced this pull request Mar 28, 2025
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 !
Copy link
Contributor

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 ?

Copy link
Contributor Author

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".

Copy link
Contributor

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.

aelovikov-intel added a commit to aelovikov-intel/llvm that referenced this pull request Mar 31, 2025
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.
@aelovikov-intel
Copy link
Contributor Author

Dev-IGC infrastructural failures are unrelated and can be seen in other PRs (e.g., https://github.com/intel/llvm/actions/runs/14201400451)

@aelovikov-intel aelovikov-intel merged commit aa0068b into intel:sycl Apr 1, 2025
21 of 23 checks passed
@aelovikov-intel aelovikov-intel deleted the fix-vec-ctors branch April 1, 2025 20:00
aelovikov-intel added a commit to aelovikov-intel/llvm that referenced this pull request Apr 1, 2025
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.
aelovikov-intel added a commit that referenced this pull request Apr 2, 2025
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants