Skip to content

Commit cdcf1a6

Browse files
authored
[SYCL][E2E] Disable tests that sporadically fail on BMG (#17201)
I reproduced the assert tests locking up the whole machine and causing GPU resets, so just disable them all for now. This is probably one of the major causes of the instability. For some reason `letter_example.cpp` is causing GPU resets on BMG, which is another good candidate as for the runner instability, so just move all XFAILing InlineAsm tests to UNSUPPORTED so they don't run at all on failing platforms. --------- Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 5c76d4c commit cdcf1a6

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://github.com/intel/llvm/issues/17203
2+
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
3+

sycl/test-e2e/InlineAsm/asm_multiple_instructions.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// RUN: %{run} %t.out
66
// The test is failing when writing directly to output buffer.
77
// If temporary variable is used (see TO_PASS mode) the test succeeded.
8-
// XFAIL: gpu && run-mode
9-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16412
8+
// UNSUPPORTED: gpu && run-mode
9+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16412
1010
#include "include/asmhelper.h"
1111
#include <iostream>
1212
#include <vector>

sycl/test-e2e/InlineAsm/letter_example.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: sg-16,aspect-usm_shared_allocations
2-
// XFAIL: arch-intel_gpu_bmg_g21
3-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16921
2+
// UNSUPPORTED: arch-intel_gpu_bmg_g21
3+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16921
44
// RUN: %{build} -o %t.out
55
// RUN: %{run} %t.out
66

sycl/test-e2e/InlineAsm/malloc_shared_32.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// REQUIRES: sg-32,aspect-usm_shared_allocations
2-
// XFAIL: arch-intel_gpu_bmg_g21
3-
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16921
2+
// UNSUPPORTED: arch-intel_gpu_bmg_g21
3+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16921
44
// RUN: %{build} -o %t.out
55
// RUN: %{run} %t.out
66

0 commit comments

Comments
 (0)