Skip to content

Commit

Permalink
[SYCL][E2E] Disable tests that sporadically fail on BMG (#17201)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
sarnex authored Feb 26, 2025
1 parent 5c76d4c commit cdcf1a6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions sycl/test-e2e/Assert/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://github.com/intel/llvm/issues/17203
config.unsupported_features += ['arch-intel_gpu_bmg_g21']

4 changes: 2 additions & 2 deletions sycl/test-e2e/InlineAsm/asm_multiple_instructions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// RUN: %{run} %t.out
// The test is failing when writing directly to output buffer.
// If temporary variable is used (see TO_PASS mode) the test succeeded.
// XFAIL: gpu && run-mode
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16412
// UNSUPPORTED: gpu && run-mode
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16412
#include "include/asmhelper.h"
#include <iostream>
#include <vector>
Expand Down
4 changes: 2 additions & 2 deletions sycl/test-e2e/InlineAsm/letter_example.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// REQUIRES: sg-16,aspect-usm_shared_allocations
// XFAIL: arch-intel_gpu_bmg_g21
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16921
// UNSUPPORTED: arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16921
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

Expand Down
4 changes: 2 additions & 2 deletions sycl/test-e2e/InlineAsm/malloc_shared_32.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// REQUIRES: sg-32,aspect-usm_shared_allocations
// XFAIL: arch-intel_gpu_bmg_g21
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16921
// UNSUPPORTED: arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16921
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out

Expand Down

0 comments on commit cdcf1a6

Please sign in to comment.