-
Notifications
You must be signed in to change notification settings - Fork 791
[SYCL] change level0 to level_zero. #2235
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
Conversation
Signed-off-by: rbegam <[email protected]>
please approve @bader |
I can do this, but in order to merge this PR code owners must approve as well. In this particular case runtime code owners must approve. |
ping @alexbatashev |
@rbegam, please, fix regressions in pre-commit testing. |
@rbegam, ping. |
Closing due to lack of activity. Please, feel free to reopen. |
@@ -1,4 +1,4 @@ | |||
// REQUIRES: opencl || level0 |
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.
Please, remove "|| level0".
I am submitting a new PR related to this lit-test. |
There is a fundamental misalignment between when translating llvm.ptr.annotation to SPIRV's OpMemberDecorate. llvm.ptr.annotation is applied onto a pointer. OpMemberDecorate is applied on a type, which means that all variables of this type will have this Decoration. This change fixes this misalignment by translating llvm.ptr.annotation to SPIRV's OpDecorate instead, which instead places the decoration onto the pointer. Original commit: KhronosGroup/SPIRV-LLVM-Translator@3770469
Signed-off-by: rbegam [email protected]