Skip to content

Commit cb4f7ab

Browse files
[SYCL][NFC] Cleanup BMG testing on Windows (#17753)
This is a joined cherry-pick of #17347 and #17105 made to align disabled tests between `sycl` and `sycl-rel-6_1_0` branches to make the pre-commit more stable on the latter. Descriptions of cherry-picked commits: --- [SYCL][Graph][E2E] Disable all Graph E2E testing on Windows Battlemage (#17348) We currently only disable the RecordReplay variant of E2E testing on battlemage, however we have many other tests and the likihood is that if the RecordReplay tests are failing then other tests will start failing too. Disable all Graphs tests until Graph support on Windows battlemage can be investigated more thoroughly. See #17165 Patch-By: Ewan Crawford <[email protected]> --- [CI] Add Windows BMG testing in precommit (#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](#17165), [two](#17255). Patch-by: Sarnie, Nick <[email protected]> ---
1 parent 9da4aad commit cb4f7ab

File tree

8 files changed

+23
-0
lines changed

8 files changed

+23
-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

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# Disabled on Arc due to https://github.com/intel/llvm/issues/14474
22
config.unsupported_features += ['gpu-intel-dg2']
3+
4+
# https://github.com/intel/llvm/issues/17165
5+
if 'windows' in config.available_features:
6+
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)