Skip to content

Commit c87e780

Browse files
authored
[SYCL] Disable the ZE_DEBUG tests on Windows (#9854)
We should not run ZE_DEBUG tests on Windows. --------- Signed-off-by: Byoungro So <[email protected]>
1 parent f4525e9 commit c87e780

6 files changed

+18
-0
lines changed

sycl/test-e2e/Reduction/reduction_complex_nums.cpp

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

4+
// Windows doesn't yet have full shutdown().
5+
// UNSUPPORTED: ze_debug && windows
6+
47
#include <algorithm>
58
#include <complex>
69
#include <numeric>

sycl/test-e2e/Reduction/reduction_nd_N_queue_shortcut.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
// This test only checks that the method queue::parallel_for() accepting
88
// reduction, can be properly translated into queue::submit + parallel_for().
99

10+
// Windows doesn't yet have full shutdown().
11+
// UNSUPPORTED: ze_debug && windows
12+
1013
#include "reduction_utils.hpp"
1114

1215
using namespace sycl;

sycl/test-e2e/Reduction/reduction_nd_reducer_skip.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// Group algorithms are not supported on Nvidia.
55
// XFAIL: hip_nvidia
66

7+
// Windows doesn't yet have full shutdown().
8+
// UNSUPPORTED: ze_debug && windows
9+
710
// This test performs basic checks of parallel_for(nd_range, reduction, func)
811
// with reductions initialized with a one element buffer. Additionally, some
912
// reducers will not be written to.

sycl/test-e2e/Reduction/reduction_range_1d_reducer_skip.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_60 %}
22
// RUN: %{run} %t.out
33

4+
// Windows doesn't yet have full shutdown().
5+
// UNSUPPORTED: ze_debug && windows
6+
47
// This test performs basic checks of parallel_for(range<1>, reduction, func)
58
// with reductions initialized with a one element buffer. Additionally, some
69
// reducers will not be written to.

sycl/test-e2e/Reduction/reduction_range_2d_dw_reducer_skip.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_60 %}
22
// RUN: %{run} %t.out
33

4+
// Windows doesn't yet have full shutdown().
5+
// UNSUPPORTED: ze_debug && windows
6+
47
// This test performs basic checks of parallel_for(range<2>, reduction, func)
58
// with reductions initialized with a one element buffer. Additionally, some
69
// reducers will not be written to.

sycl/test-e2e/Reduction/reduction_range_3d_rw_reducer_skip.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// RUN: %{build} -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_60 %}
22
// RUN: %{run} %t.out
33

4+
// Windows doesn't yet have full shutdown().
5+
// UNSUPPORTED: ze_debug && windows
6+
47
// This test performs basic checks of parallel_for(range<3>, reduction, func)
58
// with reductions initialized with a one element buffer. Additionally, some
69
// reducers will not be written to.

0 commit comments

Comments
 (0)