Skip to content

Commit 823f387

Browse files
authored
[CI] Add Battlemage testing to postcommit (#16910)
Add a Battlemage E2E L0 testing job to postcommit, and disabling failing tests. --------- Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
1 parent fcc330e commit 823f387

File tree

9 files changed

+22
-2
lines changed

9 files changed

+22
-2
lines changed

.github/workflows/sycl-post-commit.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ jobs:
5252
runner: '["Linux", "arc"]'
5353
extra_lit_opts: --param matrix-xmx8=True
5454
reset_intel_gpu: true
55+
- name: Intel Battlemage Graphics with Level Zero
56+
runner: '["Linux", "bmg"]'
57+
target_devices: level_zero:gpu
58+
# The new Xe kernel driver used by BMG doesn't support resetting.
59+
reset_intel_gpu: false
5560
- name: AMD/HIP
5661
runner: '["Linux", "amdgpu"]'
5762
image_options: -u 1001 --device=/dev/dri --device=/dev/kfd

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ config.unsupported_features += ['gpu-intel-gen12']
1919

2020
# CMPLRLLVM-64052
2121
config.unsupported_features += ['spirv-backend']
22+
23+
# https://github.com/intel/llvm/issues/16920
24+
config.unsupported_features += ['arch-intel_gpu_bmg_g21']

sycl/test-e2e/AtomicRef/atomic_memory_order_seq_cst.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %{build} -O3 -o %t.out %if any-device-is-cuda %{ -Xsycl-target-backend=nvptx64-nvidia-cuda --cuda-gpu-arch=sm_70 %}
22
// RUN: %{run} %t.out
3+
// UNSUPPORTED: arch-intel_gpu_bmg_g21
4+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16924
35

46
#include "atomic_memory_order.h"
57
#include <cmath>

sycl/test-e2e/InlineAsm/letter_example.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +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
24
// RUN: %{build} -o %t.out
35
// RUN: %{run} %t.out
46

sycl/test-e2e/InlineAsm/malloc_shared_32.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +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
24
// RUN: %{build} -o %t.out
35
// RUN: %{run} %t.out
46

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_arg_dim.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
// test.
2121
// XFAIL: gpu-intel-dg2 && run-mode
2222
// XFAIL-TRACKER: GSD-10510
23+
// XFAIL: arch-intel_gpu_bmg_g21
24+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16922
2325

2426
#include "common.hpp"
2527
#include "joint_matrix_bf16_fill_k_cache_impl.hpp"

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_runtime_dim.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
// test.
2121
// XFAIL: gpu-intel-dg2 && run-mode
2222
// XFAIL-TRACKER: GSD-10510
23+
// XFAIL: arch-intel_gpu_bmg_g21
24+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16922
2325

2426
#include "common.hpp"
2527
#include "joint_matrix_bf16_fill_k_cache_impl.hpp"

sycl/test-e2e/Matrix/joint_matrix_out_bounds.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
// other triples
1111

1212
// REQUIRES: aspect-ext_intel_matrix
13-
13+
// XFAIL: arch-intel_gpu_bmg_g21
14+
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/16922
1415
// UNSUPPORTED: gpu-intel-dg2, cpu
1516
// UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW
1617

sycl/test-e2e/bindless_images/examples/example_1_1D_read_write.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: aspect-ext_oneapi_bindless_images
2-
2+
// UNSUPPORTED: arch-intel_gpu_bmg_g21
3+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/16923
34
// UNSUPPORTED: hip
45
// UNSUPPORTED-INTENDED: Undetermined issue in 'create_image' in this test.
56

0 commit comments

Comments
 (0)