-
Notifications
You must be signed in to change notification settings - Fork 751
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] Correct handling of enumeration specialization constants #12925
Conversation
Lower enumeration specialization constants to `SpecConstant` in SPIR-V instead of `SpecConstantComposite`, thus handling them using their underlying integral types. Signed-off-by: Victor Perez <victor.perez@codeplay.com>
This handles #12703 |
@AlexeySachkov following on our conversation in #12703. Can you take a look at my proposed solution? |
@victor-eds the pre-commit failure is known and has been reported already in #12791. I don't think it's related to your changes. |
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.
LGTM.
Windows CI failure unrelated. |
Unrelated failure in post-commit reported here: #12956 |
Lower enumeration specialization constants to
SpecConstant
in SPIR-V instead ofSpecConstantComposite
, thus handling them using their underlying integral types.