-
Notifications
You must be signed in to change notification settings - Fork 768
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] Change SPIR-V Enum token type from unsigned int to int for groups builtins #17445
[SYCL] Change SPIR-V Enum token type from unsigned int to int for groups builtins #17445
Conversation
…ups builtins Motivation is the same as PR intel#17438, i.e. unifying SPIR-V builtin mangling to enhance SYCL AOT support for backend targets that bypass SPIR-V generation.
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.
Overall I'm alright with these changes, but we need to avoid the ABI break.
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 apart from the ABI break
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.
👍
kindly ping @intel/dpcpp-cfe-reviewers for review |
def : SPVBuiltin<name, [Event, UInt, PointerType<AGenTypeN, GlobalAS>, PointerType<ConstType<AGenTypeN>, LocalAS>, Size, Size, Event], Attr.Convergent>; | ||
// TODO: Allow enum flags instead of Int ? | ||
// TODO: We should enforce that the Int must be a literal. | ||
def : SPVBuiltin<name, |
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.
Same as in #17438 (comment) , should we have a test checking that clang emits correct signature and mangling for the builtin in the IR?
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.
thanks @Fznamznon
done in bc42ed1
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.
libclc LGTM
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.
Thanks!
Heads up that there will be a trivially resolved conflict between this and #17570. I can wait a little bit for your PR to go in first, and then update mine, or I can get mine in first and then you can update, whichever you prefer so long as we don't both end up waiting on the other one to merge first. :) |
Thanks @hvdijk, either way is fine for me. :) @intel/llvm-gatekeepers please merge, thanks. |
Motivation is the same as PR #17438, i.e. unifying SPIR-V builtin mangling to enhance SYCL AOT support for backend targets that bypass SPIR-V generation.