diff --git a/sycl/test-e2e/Adapters/level_zero_eager_init.cpp b/sycl/test-e2e/Adapters/level_zero_eager_init.cpp index 3d51e754f1489..74b7448aee907 100644 --- a/sycl/test-e2e/Adapters/level_zero_eager_init.cpp +++ b/sycl/test-e2e/Adapters/level_zero_eager_init.cpp @@ -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 // diff --git a/sycl/test-e2e/Adapters/level_zero_events_caching.cpp b/sycl/test-e2e/Adapters/level_zero_events_caching.cpp index 40e0349f5d356..3d03694ce54be 100644 --- a/sycl/test-e2e/Adapters/level_zero_events_caching.cpp +++ b/sycl/test-e2e/Adapters/level_zero_events_caching.cpp @@ -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 diff --git a/sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp b/sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp index f3aa3da05a3e2..a4f37a0cd6ed6 100644 --- a/sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp +++ b/sycl/test-e2e/DeviceLib/std_complex_math_fp64_test.cpp @@ -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 diff --git a/sycl/test-e2e/Graph/lit.local.cfg b/sycl/test-e2e/Graph/lit.local.cfg index 300488576c646..4ac0e2724fdeb 100644 --- a/sycl/test-e2e/Graph/lit.local.cfg +++ b/sycl/test-e2e/Graph/lit.local.cfg @@ -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'] diff --git a/sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp b/sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp index 563f75d313e95..9e1cc4933e416 100644 --- a/sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp +++ b/sycl/test-e2e/KernelCompiler/kernel_compiler_sycl_jit.cpp @@ -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 diff --git a/sycl/test-e2e/Matrix/lit.local.cfg b/sycl/test-e2e/Matrix/lit.local.cfg new file mode 100644 index 0000000000000..ccb372873811c --- /dev/null +++ b/sycl/test-e2e/Matrix/lit.local.cfg @@ -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'] diff --git a/sycl/test-e2e/Regression/static-buffer-dtor.cpp b/sycl/test-e2e/Regression/static-buffer-dtor.cpp index 8ff9328d6535d..a1e0a1b1ba150 100644 --- a/sycl/test-e2e/Regression/static-buffer-dtor.cpp +++ b/sycl/test-e2e/Regression/static-buffer-dtor.cpp @@ -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 int main() { diff --git a/sycl/test-e2e/WorkGroupMemory/basic_usage.cpp b/sycl/test-e2e/WorkGroupMemory/basic_usage.cpp index 4dbc2073d7009..564906ad134ca 100644 --- a/sycl/test-e2e/WorkGroupMemory/basic_usage.cpp +++ b/sycl/test-e2e/WorkGroupMemory/basic_usage.cpp @@ -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