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] Switch to use plain array in sycl::vec in more cases #17656

Conversation

AlexeySachkov
Copy link
Contributor

The problem with using std::array in sycl::vec is that we cannot compile it in some environments (namely, Windows) because the former may use something that is illegal in SYCL device code.

#17025 fixed that, but only did so under preview breaking changes mode, which does not satisfy some of our customers immediately.

This PR introduces two main changes:

  • it allows to opt-in for new behavior through passing -D__SYCL_USE_NEW_VEC_IMPL=1 macro without using -fpreview-breaking-changes flag. That allows for a more gradual opt-in from customers who are interested in this fix
  • it switches the imlpementation to use the new approach with C-style arrays if their size and alignment is the same as for the corresponding std::array - in that case their memory layout is expected to be absolutely the same and therefore it should be safe to use the new approach without fear of some ABI incompatibilities. This allows for customers to benefit from the fix without specifying any extra macro (which should be the case for the most common platforms out there)

The problem with using `std::array` in `sycl::vec` is that we cannot
compile it in some environments (namely, Windows) because the former may
use something that is illegal in SYCL device code.

intel#17025 fixed that, but only did so under preview breaking
changes mode, which does not satisfy some of our customers immediately.

This PR introduces two main changes:
- it allows to opt-in for new behavior through passing
  `-D__SYCL_USE_NEW_VEC_IMPL=1` macro without using
  `-fpreview-breaking-changes` flag. That allows for a more gradual
  opt-in from customers who are interested in this fix
- it switches the imlpementation to use the new approach with C-style
  arrays if their size and alignment is the same as for the
  corresponding `std::array` - in that case their memory layout is
  expected to be absolutely the same and therefore it should be safe to
  use the new approach without fear of some ABI incompatibilities. This
  allows for customers to benefit from the fix without specifying any
  extra macro (which should be the case for the most common platforms
  out there)
// alignment match those of std::array, or unless the new behavior is forced
// via __SYCL_USE_NEW_VEC_IMPL or preview breaking changes mode.
using DataType = std::conditional_t<
#if __SYCL_USE_NEW_VEC_IMPL
Copy link
Contributor

Choose a reason for hiding this comment

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

FYI, I think @aelovikov-intel is also using this flag for some other (draft?) sycl::vec refactoring work. So, if the user explicitly specifies __SYCL_USE_NEW_VEC_IMPL macro, it might bring in Andrei's changes as well, along with the switch to using C-arrays.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The main point here is to have some sort of opt-in mechanism for customers who value building in debug mode on windows using clang.exe (instead of clang-cl.exe) over backwards compatibility or potential ABI issues. So, I'm fine with choosing any other name here, I've just re-used what we had already

Copy link
Contributor

Choose a reason for hiding this comment

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

True. Let's use some other macro name

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done in 0c1c53d

@AlexeySachkov AlexeySachkov marked this pull request as ready for review March 27, 2025 13:44
@AlexeySachkov AlexeySachkov requested a review from a team as a code owner March 27, 2025 13:44
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 this is a reasonably conservative solution. 👍

Copy link
Contributor

@aelovikov-intel aelovikov-intel left a comment

Choose a reason for hiding this comment

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

Can anybody find one widely used configuration (gcc/clang/msvc) where that's not true? If not, just make the change unconditionally and be done with it. We're doing shadier things all the time, no need to pretend to be so proper here, IMO.

PS, sycl::vec's alignment is much stricter than that of std::array, see line 195. I don't think your alignment check is necessary.

@AlexeySachkov AlexeySachkov merged commit 1cd73d9 into intel:sycl Mar 27, 2025
20 of 23 checks passed
@AlexeySachkov AlexeySachkov deleted the private/asachkov/switch-to-plain-array-in-vec-earlier branch March 27, 2025 18:50
AlexeySachkov added a commit to AlexeySachkov/llvm that referenced this pull request Mar 27, 2025
The problem with using `std::array` in `sycl::vec` is that we cannot
compile it in some environments (namely, Windows) because the former may
use something that is illegal in SYCL device code.

intel#17025 fixed that, but only did so under preview breaking
changes mode, which does not satisfy some of our customers immediately.

This PR introduces two main changes:
- it allows to opt-in for new behavior through passing
`-D__SYCL_USE_NEW_VEC_IMPL=1` macro without using
`-fpreview-breaking-changes` flag. That allows for a more gradual opt-in
from customers who are interested in this fix
- it switches the imlpementation to use the new approach with C-style
arrays if their size and alignment is the same as for the corresponding
`std::array` - in that case their memory layout is expected to be
absolutely the same and therefore it should be safe to use the new
approach without fear of some ABI incompatibilities. This allows for
customers to benefit from the fix without specifying any extra macro
(which should be the case for the most common platforms out there)

This is a cherry-pick of intel#17656
AlexeySachkov added a commit that referenced this pull request Mar 31, 2025
…ses" to sycl-rel-6_0_0 (#17697)

This is a cherry-pick of #17656 +
changes required to resolve merge conflicts.

--------------------------------------

The problem with using std::array in sycl::vec is that we cannot compile
it in some environments (namely, Windows) because the former may use
something that is illegal in SYCL device code.

#17025 fixed that, but only did so
under preview breaking changes mode, which does not satisfy some of our
customers immediately.

This PR introduces two main changes:

it allows to opt-in for new behavior through passing
-D__SYCL_USE_NEW_VEC_IMPL=1 macro without using
-fpreview-breaking-changes flag. That allows for a more gradual opt-in
from customers who are interested in this fix
it switches the imlpementation to use the new approach with C-style
arrays if their size and alignment is the same as for the corresponding
std::array - in that case their memory layout is expected to be
absolutely the same and therefore it should be safe to use the new
approach without fear of some ABI incompatibilities. This allows for
customers to benefit from the fix without specifying any extra macro
(which should be the case for the most common platforms out there)

---------

Co-authored-by: Alexey Sachkov <alexey.sachkov@intel.com>
KornevNikita pushed a commit that referenced this pull request Apr 2, 2025
The problem with using `std::array` in `sycl::vec` is that we cannot
compile it in some environments (namely, Windows) because the former may
use something that is illegal in SYCL device code.

#17025 fixed that, but only did so under preview breaking
changes mode, which does not satisfy some of our customers immediately.

This PR introduces two main changes:
- it allows to opt-in for new behavior through passing
`-D__SYCL_USE_NEW_VEC_IMPL=1` macro without using
`-fpreview-breaking-changes` flag. That allows for a more gradual opt-in
from customers who are interested in this fix
- it switches the imlpementation to use the new approach with C-style
arrays if their size and alignment is the same as for the corresponding
`std::array` - in that case their memory layout is expected to be
absolutely the same and therefore it should be safe to use the new
approach without fear of some ABI incompatibilities. This allows for
customers to benefit from the fix without specifying any extra macro
(which should be the case for the most common platforms out there)
AlexeySachkov added a commit that referenced this pull request Apr 3, 2025
### Cherry-pick of: #17656 and some
changes to resolve merge conflicts & make it work.

The problem with using `std::array` in `sycl::vec` is that we cannot
compile it in some environments (namely, Windows) because the former may
use something that is illegal in SYCL device code.

#17025 fixed that, but only did so under preview breaking
changes mode, which does not satisfy some of our customers immediately.

This PR introduces two main changes:
- it allows to opt-in for new behavior through passing
`-D__SYCL_USE_NEW_VEC_IMPL=1` macro without using
`-fpreview-breaking-changes` flag. That allows for a more gradual opt-in
from customers who are interested in this fix
- it switches the imlpementation to use the new approach with C-style
arrays if their size and alignment is the same as for the corresponding
`std::array` - in that case their memory layout is expected to be
absolutely the same and therefore it should be safe to use the new
approach without fear of some ABI incompatibilities. This allows for
customers to benefit from the fix without specifying any extra macro
(which should be the case for the most common platforms out there)

Co-authored-by: Alexey Sachkov <alexey.sachkov@intel.com>
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.

4 participants