[SYCL][CUDA][E2E] Disable tests failing on CUDA 13#22508
Conversation
Tests disabled: - WorkGroupMemory/basic_usage.cpp - bindless_images/read_sampled.cpp - bindless_images/vulkan_interop/vulkan_sycl_image_interop_read_1d.cpp - bindless_images/vulkan_interop/vulkan_sycl_image_interop_write_1d_unsampled.cpp Tracked in: - intel#21806 - intel#21807 - intel#21808
There was a problem hiding this comment.
Pull request overview
This PR temporarily disables a small set of SYCL end-to-end tests for the NVIDIA/CUDA target in response to sporadic failures observed after enabling the CUDA 13 CI workflow, with failures tracked in linked issues.
Changes:
- Mark
WorkGroupMemory/basic_usage.cppasUNSUPPORTEDontarget-nvidia(tracked in #21806). - Mark
bindless_images/read_sampled.cppasUNSUPPORTEDontarget-nvidia(tracked in #21807). - Mark two Vulkan interop bindless image tests as
UNSUPPORTEDontarget-nvidia(tracked in #21808).
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| sycl/test-e2e/WorkGroupMemory/basic_usage.cpp | Disables the test on NVIDIA/CUDA via UNSUPPORTED: target-nvidia with tracker #21806. |
| sycl/test-e2e/bindless_images/read_sampled.cpp | Disables the test on NVIDIA/CUDA via UNSUPPORTED: target-nvidia with tracker #21807. |
| sycl/test-e2e/bindless_images/vulkan_interop/vulkan_sycl_image_interop_read_1d.cpp | Disables the test on NVIDIA/CUDA via UNSUPPORTED: target-nvidia with tracker #21808. |
| sycl/test-e2e/bindless_images/vulkan_interop/vulkan_sycl_image_interop_write_1d_unsampled.cpp | Disables the test on NVIDIA/CUDA via UNSUPPORTED: target-nvidia with tracker #21808. |
| // UNSUPPORTED: target-nvidia | ||
| // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/21806 |
| // UNSUPPORTED: target-nvidia | ||
| // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/21807 |
| // UNSUPPORTED: target-nvidia | ||
| // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/21808 |
| // UNSUPPORTED: target-nvidia | ||
| // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/21808 |
|
@kekaczma Do we have enabled CUDA 13 runner or not yet? Maybe adding some option for just disabling tests for specific CUDA version instead of just making test unsupported for all CUDA versions. |
This commit implements CUDA version detection in LIT configuration and conditionally disables 4 tests that are known to fail on CUDA 13+
This PR is one of the last changes before enabling CUDA 13. I added CUDA version detection in the LIT configuration and conditionally disabled these 4 tests. |
In that case I am okay with changes regarding bindless images. |
|
@intel/llvm-gatekeepers please consider merging |
Hi @kekaczma, |
After enabling CUDA 13 workflow (see #21564) few tests are failing sporadically:
This PR implements CUDA version detection in LIT configuration and conditionally disables these 4 tests on CUDA 13+.
Tracked in: