From d0b53fafbbb28c700752cd56344a77c59f5d8232 Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Sun, 17 Aug 2025 22:48:58 -0700 Subject: [PATCH] [SYCL][E2E] Require CUDA on max(_linear)_work_group_size property tests This commit changes the requirements in sycl/test-e2e/Basic/max_work_group_size_props.cpp and sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp to require CUDA rather than exclude other backends. This is done as the extension feature is explicitly marked as CUDA-specific in the extension document. Signed-off-by: Larsen, Steffen --- sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp | 5 ++--- sycl/test-e2e/Basic/max_work_group_size_props.cpp | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp b/sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp index d335b0c34b5a2..4418f90cc5a4d 100644 --- a/sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp +++ b/sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp @@ -1,9 +1,8 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// This property is not yet supported by all UR adapters -// XFAIL: level_zero, opencl, hip -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16403 +// This feature is currently only supported on CUDA. +// REQUIRES: cuda #include diff --git a/sycl/test-e2e/Basic/max_work_group_size_props.cpp b/sycl/test-e2e/Basic/max_work_group_size_props.cpp index a4d23db90863e..0eae620898429 100644 --- a/sycl/test-e2e/Basic/max_work_group_size_props.cpp +++ b/sycl/test-e2e/Basic/max_work_group_size_props.cpp @@ -1,9 +1,8 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// This property is not yet supported by all UR adapters -// XFAIL: level_zero, opencl, hip -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16403 +// This feature is currently only supported on CUDA. +// REQUIRES: cuda #include