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] Re-implement swizzles from scratch #17817

Merged
merged 1 commit into from
Apr 4, 2025

Conversation

aelovikov-intel
Copy link
Contributor

  • Removes expression trees support
  • Applies all previous vec fixes to align with recent spec changes

* Removes expression trees support
* Applies all previous vec fixes to align with [proposed] spec changes
Copy link
Contributor

@steffenlarsen steffenlarsen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall I think it looks good. How breaking is this? Do we have the necessary approvals to bring it in now?

@@ -477,6 +500,172 @@ template <typename Self> struct VecOperators {
OpAssign<ShiftRight>, IncDec> {};
};

#if !__SYCL_USE_LIBSYCL8_VEC_IMPL
template <typename Self> struct SwizzleOperators {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit; The Self name is used all around to represent a shared-pointer to the implementation itself. Could we maybe call this SelfT to disambiguate?

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 think it's a bit late: https://github.com/search?q=repo%3Aintel%2Fllvm+Self+path%3Asycl%2Finclude%2Fsycl%2F&type=code. I also don't see an issue with that. IMO, Self is like this but just a bit different. shared-pointer impl or CRTP both satisfy that view.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO, Self is like this but just a bit different. shared-pointer impl or CRTP both satisfy that view.

That's my point. The shared-pointer impl is like this but different, and I don't see a reflective type being as close. Even if you could make the argument that it is, it creates the ambiguity that I wanted to avoid. Alas, it's just a nit, so I won't fight. 😉

@aelovikov-intel
Copy link
Contributor Author

Overall I think it looks good. How breaking is this? Do we have the necessary approvals to bring it in now?

It is breaking, we'll only do that under preview (once I merge all the changes to reflect spec modifications). @gmlueck was owning that item to get approvals. One request from up high was to preserve some way to get back old implementation even in the next major release (hence __SYCL_USE_LIBSYCL8_VEC_IMPL macro).

@gmlueck
Copy link
Contributor

gmlueck commented Apr 3, 2025

@aelovikov-intel

It is breaking, we'll only do that under preview (once I merge all the changes to reflect spec modifications). @gmlueck was owning that item to get approvals.

At this point, all of the SYCL 2020 specification changes for vec have been approved and merged except for KhronosGroup/SYCL-Docs#674, and the only reason that isn't merged is because of your comment here in the related CTS test.

Copy link
Contributor

@steffenlarsen steffenlarsen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it looks good. Brace for impact!

@aelovikov-intel aelovikov-intel merged commit 63ab1cb into intel:sycl Apr 4, 2025
34 of 35 checks passed
@aelovikov-intel aelovikov-intel deleted the new-swizzle branch April 4, 2025 14:41
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