Skip to content

[SYCL][NFC] Cleanup BMG testing on Windows #17753

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sycl/test-e2e/Adapters/level_zero_eager_init.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// REQUIRES: level_zero, level_zero_dev_kit

// XFAIL: windows && arch-intel_gpu_bmg_g21
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/17165

// RUN: %{build} -Wno-error=deprecated-declarations %level_zero_options -o %t.out
// RUN: env UR_L0_DEBUG=1 SYCL_EAGER_INIT=1 %{run} %t.out 2>&1 | FileCheck %s
//
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/Adapters/level_zero_events_caching.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// REQUIRES: gpu, level_zero

// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255

// RUN: %{build} -o %t.out

// RUN: %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck --check-prefixes=CACHING-ENABLED %s
Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// REQUIRES: aspect-fp64
// UNSUPPORTED: hip || cuda
// XFAIL: windows && arch-intel_gpu_bmg_g21
// XFAIL-TRACKER: https://github.com/intel/llvm/issues/17165
// RUN: %{build} -o %t1.out
// RUN: %{run} %t1.out

Expand Down
4 changes: 4 additions & 0 deletions sycl/test-e2e/Graph/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Disabled on Arc due to https://github.com/intel/llvm/issues/14474
config.unsupported_features += ['gpu-intel-dg2']

# https://github.com/intel/llvm/issues/17165
if 'windows' in config.available_features:
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
3 changes: 3 additions & 0 deletions sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
// REQUIRES: (opencl || level_zero)
// UNSUPPORTED: accelerator

// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255

// RUN: %{build} -o %t.out
// RUN: %{run} %t.out
// RUN: %{l0_leak_check} %{run} %t.out
Expand Down
3 changes: 3 additions & 0 deletions sycl/test-e2e/Matrix/lit.local.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://github.com/intel/llvm/issues/17165
if 'windows' in config.available_features:
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
3 changes: 3 additions & 0 deletions sycl/test-e2e/Regression/static-buffer-dtor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
// Windows doesn't yet have full shutdown().
// UNSUPPORTED: ze_debug && windows

// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255

#include <sycl/detail/core.hpp>

int main() {
Expand Down
2 changes: 2 additions & 0 deletions sycl/test-e2e/WorkGroupMemory/basic_usage.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// UNSUPPORTED: windows && arch-intel_gpu_bmg_g21
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17255
// RUN: %{build} -o %t.out
// RUN: %{run} %t.out
#include <cassert>
Expand Down
Loading