-
Notifications
You must be signed in to change notification settings - Fork 754
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][Bindless][E2E] Enable 3-channel image test for Intel GPUs #16537
[SYCL][Bindless][E2E] Enable 3-channel image test for Intel GPUs #16537
Conversation
@przemektmalon could you please update test to use ushort format like in following diff
Intel GPU currently only supports ushort and uchar format for 3-channels. |
|
Indeed, good catch. Updated to use @wenju-he Does this mean the kernel code requires change as well? I.e. when calling If the Intel driver returns a 6-byte length type, then we might need to use a custom |
good question, but I don't have a clear answer to it. |
@intel/bindless-images-reviewers please review, thanks. This test is now passing with latest intel gpu driver. |
@intel/llvm-gatekeepers I believe this can be merged. |
@przemektmalon - Test is failing on Arc in post-commit. Could you please address this ASAP or revert? |
@wenju-he does the post-commit CI use the latest driver? If not, can we bump it to the latest driver? |
@ProGTX CI is using latest public gpu driver https://github.com/intel/compute-runtime/releases/tag/24.52.32224.5 in which NEO version is 32224. |
the bumping is automatic once there is a new public gpu driver. So we have to wait for a new public gpu driver whose version is higher than 32370 |
It usually takes 3-4 weeks to reach public release/gfx-master. i will try to find the actual schedule of including it in public release and inform here. |
We can't have the test failing, but if you would like to preserve the commit, then there is an option to say that the test requires a certain driver version to be present, look for:
|
This patch should fix the post-commit failure resulting from enabling the 3-channel image PR in intel#16537 This is done by adding a `// REQUIRES-INTEL-DRIVER:` comment for LIT to ignore the test until the necessary driver for the functionality is introduced to the GitHub CI.
@steffenlarsen @AlexeySachkov I've used the Linux driver version that @wenju-he mentioned introduces the 3-channel capability. I'm unsure, however, what the corresponding Windows driver version should be. |
This patch should fix the post-commit failure resulting from enabling the 3-channel image PR in #16537 This is done by adding a `// REQUIRES-INTEL-DRIVER:` comment for LIT to ignore the test until the necessary driver for the functionality is introduced to the GitHub CI.
This patch enables the 3-channel image E2E test on Intel GPUs.