Skip to content

Commit 62d7e98

Browse files
enable the tests for cpu
1 parent bbe5cc3 commit 62d7e98

File tree

10 files changed

+10
-21
lines changed

10 files changed

+10
-21
lines changed

sycl/test-e2e/AddressSanitizer/common/kernel-filter-aot-cpu.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
// RUN: %{run} %t1 2>&1 | FileCheck %S/kernel-filter.cpp --check-prefixes CHECK-IGNORE
55
// RUN: %{run-aux} %{build} %device_asan_aot_flags %S/kernel-filter.cpp -g -O2 -o %t2
66
// RUN: %{run} not %t2 2>&1 | FileCheck %S/kernel-filter.cpp
7+
8+
// XFAIL: spirv-backend && cpu
9+
// XFAIL-TRACKER: CMPLRLLVM-64052

sycl/test-e2e/AddressSanitizer/common/kernel-filter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %{build} %device_asan_flags -g -O2 -o %t2
55
// RUN: %{run} not %t2 2>&1 | FileCheck %s
66

7-
// XFAIL: spirv-backend && gpu
7+
// XFAIL: spirv-backend
88
// XFAIL-TRACKER: CMPLRLLVM-64052
99

1010
#include <sycl/detail/core.hpp>

sycl/test-e2e/AddressSanitizer/out-of-bounds/USM/unaligned_shadow_memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %{build} %device_asan_flags -DTEST2 -O0 -g -o %t2.out
55
// RUN: %{run} not %t2.out 2>&1 | FileCheck --check-prefixes CHECK,CHECK2 %s
66

7-
// XFAIL: spirv-backend && gpu
7+
// XFAIL: spirv-backend
88
// XFAIL-TRACKER: CMPLRLLVM-64052
99

1010
#include <sycl/detail/core.hpp>

sycl/test-e2e/AddressSanitizer/out-of-bounds/local/group_local_memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// RUN: %{build} %device_asan_flags -g -O2 -o %t3.out
99
// RUN: %{run} not %t3.out 2>&1 | FileCheck %s
1010

11-
// XFAIL: spirv-backend && gpu
11+
// XFAIL: spirv-backend
1212
// XFAIL-TRACKER: CMPLRLLVM-64052
1313

1414
#include <sycl/detail/core.hpp>

sycl/test-e2e/AddressSanitizer/out-of-bounds/local/group_local_memory_func.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// RUN: %{build} %device_asan_flags -g -O2 -o %t3.out
99
// RUN: %{run} not %t3.out 2>&1 | FileCheck %s
1010

11-
// XFAIL: spirv-backend && gpu
11+
// XFAIL: spirv-backend
1212
// XFAIL-TRACKER: CMPLRLLVM-64052
1313

1414
#include <sycl/detail/core.hpp>

sycl/test-e2e/AddressSanitizer/out-of-bounds/private/single_private.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// RUN: %{build} %device_asan_flags -O2 -g -o %t3.out
77
// RUN: %{run} not %t3.out 2>&1 | FileCheck %s
88

9+
// XFAIL: spirv-backend && cpu
10+
// XFAIL-TRACKER: CMPLRLLVM-64052
11+
912
#include <sycl/detail/core.hpp>
1013
#include <sycl/usm.hpp>
1114

sycl/test-e2e/BFloat16/bfloat16_builtins.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
// RUN: %if preview-breaking-changes-supported %{ %clangxx -fsycl -fpreview-breaking-changes %{sycl_target_opts} %if target-nvidia %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_80 %} %s -o %t2.out %{mathflags} %}
1313
// RUN: %if preview-breaking-changes-supported %{ %{run} %t2.out %}
1414

15-
// Flaky timeout on CPU. Enable when fixed.
16-
// Depends on SPIR-V Backend & run-time drivers version.
17-
// UNSUPPORTED: spirv-backend && cpu
18-
// UNSUPPORTED-TRACKER: CMPLRLLVM-64705
19-
2015
#include "bfloat16_builtins.hpp"
2116

2217
int main() {

sycl/test-e2e/DeviceLib/imf/fp64_rounding_test.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
// RUN: %{build} -fno-builtin %if target-spir %{ -fsycl-device-lib-jit-link -Wno-deprecated %} -o %t2.out
66
// RUN: %{run} %t2.out
77

8-
// Depends on SPIR-V Backend & run-time drivers version.
9-
// XFAIL: spirv-backend && run-mode
10-
// XFAIL-TRACKER: CMPLRLLVM-64705
11-
128
#include "imf_utils.hpp"
139
#include <sycl/ext/intel/math.hpp>
1410

sycl/test-e2e/Reduction/reduction_span.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33

44
// This test performs basic checks of reductions initialized with a sycl::span
55

6-
// Depends on SPIR-V Backend & run-time drivers version.
7-
// XFAIL: spirv-backend && cpu
8-
// XFAIL-TRACKER: CMPLRLLVM-64705
9-
106
#include <sycl/detail/core.hpp>
117

128
#include <sycl/reduction.hpp>

sycl/test-e2e/Reduction/reduction_span_pack.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
// This test performs basic checks of reductions initialized with a pack
55
// containing at least one sycl::span
66

7-
// Depends on SPIR-V Backend & run-time drivers version.
8-
// XFAIL: spirv-backend && cpu
9-
// XFAIL-TRACKER: CMPLRLLVM-64705
10-
117
#include <sycl/detail/core.hpp>
128

139
#include <sycl/reduction.hpp>

0 commit comments

Comments
 (0)