-
Notifications
You must be signed in to change notification settings - Fork 747
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][CUDA] LIT SPIR-V test unsupported #1847
[SYCL][CUDA] LIT SPIR-V test unsupported #1847
Conversation
Mark a LIT test that checks for SPIR-V specific trace output as unsupported by CUDA as the CUDA plugin does not support SPIR-V. Signed-off-by: Bjoern Knafla <bjoern@codeplay.com>
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.
Does it make sense to save this scheduler test for CUDA by replacing this check by the check below?
// CHECK:---> pi{{[a-zA-Z_]*}}ProgramCreate{{[a-zA-Z_]*}}
@againull That is a great idea! I will look into that. |
@againull, what PI function we use to create a program in AOT mode with level0? |
piclProgramCreateWithBinary if i am not mistaken. |
So, all backends including CUDA and level0 implement picl* function, which seems to be OpenCL specific. |
+1 Level-Zero supports |
I am not sure if I have testing of Level0 locally set up - if I change the PI function naming will the buildbots find if I missed something in Level0? There are also tests with symbol dumps in them - not sure yet how they are created (seems that only the test file itself needs to be edited). As I have more pressing issues on my stack and the renaming might take more investigation than expected this PR might have to wait a bit. |
I'm fine with doing renaming in a separate PR. |
I will close this PR then. |
I thought you are going to enable this test for CUDA following the suggestion from @againull
|
I will close this and then open a PR with the |
Closing in favor for #1865 |
Mark a LIT test that checks for SPIR-V specific trace output as
unsupported by CUDA as the CUDA plugin does not support SPIR-V.
Signed-off-by: Bjoern Knafla bjoern@codeplay.com