Skip to content

Commit 421bfc1

Browse files
[SYCL][E2E] Require CUDA on max(_linear)_work_group_size property tests (#19814)
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. Closes #16403 Signed-off-by: Larsen, Steffen <[email protected]>
1 parent b076552 commit 421bfc1

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

sycl/test-e2e/Basic/max_linear_work_group_size_props.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4-
// This property is not yet supported by all UR adapters
5-
// XFAIL: level_zero, opencl, hip
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16403
4+
// This feature is currently only supported on CUDA.
5+
// REQUIRES: cuda
76

87
#include <sycl/detail/core.hpp>
98

sycl/test-e2e/Basic/max_work_group_size_props.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
// RUN: %{build} -o %t.out
22
// RUN: %{run} %t.out
33

4-
// This property is not yet supported by all UR adapters
5-
// XFAIL: level_zero, opencl, hip
6-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16403
4+
// This feature is currently only supported on CUDA.
5+
// REQUIRES: cuda
76

87
#include <sycl/detail/core.hpp>
98

0 commit comments

Comments
 (0)