Skip to content

Commit 9dbda19

Browse files
sarnexAlexeySachkov
authored andcommitted
[CI] Add Windows BMG testing in precommit (intel#17105)
We got a Windows BMG machine, so add Windows BMG testing. There are two categories of failures here: consistent failures/timeouts and really slow tests causing CI to take 30min extra. I disabled both of these and made two GH issues: [one](intel#17165), [two](intel#17255). --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 71e7215 commit 9dbda19

File tree

9 files changed

+27
-0
lines changed

9 files changed

+27
-0
lines changed

sycl/test-e2e/Adapters/level_zero_eager_init.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// REQUIRES: level_zero, level_zero_dev_kit
22

3+
// XFAIL: windows && arch-intel_gpu_bmg_g21
4+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/17165
5+
36
// RUN: %{build} -Wno-error=deprecated-declarations %level_zero_options -o %t.out
47
// RUN: env UR_L0_DEBUG=1 SYCL_EAGER_INIT=1 %{run} %t.out 2>&1 | FileCheck %s
58
//

sycl/test-e2e/Adapters/level_zero_events_caching.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// REQUIRES: gpu, level_zero
22

3+
// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
4+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255
5+
36
// RUN: %{build} -o %t.out
47

58
// RUN: %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck --check-prefixes=CACHING-ENABLED %s

sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// REQUIRES: aspect-fp64
22
// UNSUPPORTED: hip || cuda
3+
// XFAIL: windows && arch-intel_gpu_bmg_g21
4+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/17165
35
// RUN: %{build} -o %t1.out
46
// RUN: %{run} %t1.out
57

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
config.required_features += ['aspect-ext_oneapi_limited_graph']
2+
3+
# https://github.com/intel/llvm/issues/17165
4+
if 'windows' in config.available_features:
5+
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
config.required_features += ['aspect-ext_oneapi_graph']
2+
3+
# https://github.com/intel/llvm/issues/17165
4+
if 'windows' in config.available_features:
5+
config.unsupported_features += ['arch-intel_gpu_bmg_g21']

sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// REQUIRES: (opencl || level_zero)
1010
// UNSUPPORTED: accelerator
1111

12+
// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
13+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255
14+
1215
// RUN: %{build} -o %t.out
1316
// RUN: %{run} %t.out
1417
// RUN: %{l0_leak_check} %{run} %t.out

sycl/test-e2e/Matrix/lit.local.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://github.com/intel/llvm/issues/17165
2+
if 'windows' in config.available_features:
3+
config.unsupported_features += ['arch-intel_gpu_bmg_g21']

sycl/test-e2e/Regression/static-buffer-dtor.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
// Windows doesn't yet have full shutdown().
1919
// UNSUPPORTED: ze_debug && windows
2020

21+
// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
22+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255
23+
2124
#include <sycl/detail/core.hpp>
2225

2326
int main() {

sycl/test-e2e/WorkGroupMemory/basic_usage.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
2+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255
13
// RUN: %{build} -o %t.out
24
// RUN: %{run} %t.out
35
#include <cassert>

0 commit comments

Comments
 (0)