diff --git a/sycl/test-e2e/Adapters/level_zero/event-leak.cpp b/sycl/test-e2e/Adapters/level_zero/event-leak.cpp index af854d5129606..d94730f323969 100644 --- a/sycl/test-e2e/Adapters/level_zero/event-leak.cpp +++ b/sycl/test-e2e/Adapters/level_zero/event-leak.cpp @@ -1,7 +1,8 @@ // REQUIRES: level_zero, level_zero_dev_kit // // UNSUPPORTED: windows && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20852 +// UNSUPPORTED-TRACKER: Re-enable when windows L0 loader gets updated to +// ver >= 2.25.2, https://github.com/intel/llvm/issues/20852 // // RUN: %{build} %level_zero_options -o %t.out // RUN: %{l0_leak_check} %{run} %t.out wait 2>&1 | FileCheck %s diff --git a/sycl/test-e2e/Basic/buffer/buffer_full_copy.cpp b/sycl/test-e2e/Basic/buffer/buffer_full_copy.cpp index b1dc72708b810..55d5fb278262f 100644 --- a/sycl/test-e2e/Basic/buffer/buffer_full_copy.cpp +++ b/sycl/test-e2e/Basic/buffer/buffer_full_copy.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 - //==------------- buffer_full_copy.cpp - SYCL buffer basic test ------------==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/sycl/test-e2e/Basic/fill_accessor.cpp b/sycl/test-e2e/Basic/fill_accessor.cpp index 0f000d1baac4b..7c3996b2fc4c2 100644 --- a/sycl/test-e2e/Basic/fill_accessor.cpp +++ b/sycl/test-e2e/Basic/fill_accessor.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 - #include #include diff --git a/sycl/test-e2e/Basic/fill_accessor_ur.cpp b/sycl/test-e2e/Basic/fill_accessor_ur.cpp index 69395f8b4053b..6643845de4c3d 100644 --- a/sycl/test-e2e/Basic/fill_accessor_ur.cpp +++ b/sycl/test-e2e/Basic/fill_accessor_ur.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: env SYCL_UR_TRACE=2 %{run} %t.out | FileCheck %s -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 - // This test merely checks the use of the correct UR call. Its sister test // fill_accessor.cpp thoroughly checks the workings of the .fill() call. diff --git a/sycl/test-e2e/Basic/handler/handler_mem_op.cpp b/sycl/test-e2e/Basic/handler/handler_mem_op.cpp index 778b6f93cbbbc..8fe99aa149951 100644 --- a/sycl/test-e2e/Basic/handler/handler_mem_op.cpp +++ b/sycl/test-e2e/Basic/handler/handler_mem_op.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 - //==- handler.cpp - SYCL handler explicit memory operations test -*- C++-*--==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/sycl/test-e2e/Basic/queue/queue_shortcut_functions.cpp b/sycl/test-e2e/Basic/queue/queue_shortcut_functions.cpp index 2d37e17b706dd..3bbf9cc74daf2 100644 --- a/sycl/test-e2e/Basic/queue/queue_shortcut_functions.cpp +++ b/sycl/test-e2e/Basic/queue/queue_shortcut_functions.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 - //==-- queue_shortcut_functions.cpp - SYCL queue shortcut functions test ---==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/sycl/test-e2e/DeprecatedFeatures/DiscardEvents/discard_events_l0_leak.cpp b/sycl/test-e2e/DeprecatedFeatures/DiscardEvents/discard_events_l0_leak.cpp index fe73e1e7def15..5c0c4bf38d4ab 100644 --- a/sycl/test-e2e/DeprecatedFeatures/DiscardEvents/discard_events_l0_leak.cpp +++ b/sycl/test-e2e/DeprecatedFeatures/DiscardEvents/discard_events_l0_leak.cpp @@ -1,7 +1,8 @@ // REQUIRES: level_zero // // UNSUPPORTED: windows && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20852 +// UNSUPPORTED-TRACKER: Re-enable when windows L0 loader gets updated to +// ver >= 2.25.2, https://github.com/intel/llvm/issues/20852 // // RUN: %{build} -o %t.out // @@ -19,7 +20,8 @@ #include #include -int main(int argc, char *argv[]) { + int + main(int argc, char *argv[]) { assert(argc == 2 && "Invalid number of arguments"); std::string use_queue_finish(argv[1]); diff --git a/sycl/test-e2e/Graph/Profiling/event_profiling_info.cpp b/sycl/test-e2e/Graph/Profiling/event_profiling_info.cpp index 57908b3317c0c..7f363f10c3822 100644 --- a/sycl/test-e2e/Graph/Profiling/event_profiling_info.cpp +++ b/sycl/test-e2e/Graph/Profiling/event_profiling_info.cpp @@ -4,9 +4,6 @@ // Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG // RUN: %if level_zero %{%{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} -// UNSUPPORTED: level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760 - // This test checks the profiling of an event returned // from graph submission with event::get_profiling_info(). // It first tests a graph made exclusively of memory operations, diff --git a/sycl/test-e2e/Graph/Profiling/event_profiling_info_usm.cpp b/sycl/test-e2e/Graph/Profiling/event_profiling_info_usm.cpp index 8a404ee259777..22d49149722a9 100644 --- a/sycl/test-e2e/Graph/Profiling/event_profiling_info_usm.cpp +++ b/sycl/test-e2e/Graph/Profiling/event_profiling_info_usm.cpp @@ -4,9 +4,6 @@ // Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG // RUN: %if level_zero %{%{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %} -// UNSUPPORTED: level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760 - // This test checks the profiling of an event returned // from graph submission with event::get_profiling_info(). // It first tests a graph made exclusively of memory operations, diff --git a/sycl/test-e2e/Matrix/SG32/joint_matrix_out_bounds.cpp b/sycl/test-e2e/Matrix/SG32/joint_matrix_out_bounds.cpp index 92c9d3429543f..b459ccd509814 100644 --- a/sycl/test-e2e/Matrix/SG32/joint_matrix_out_bounds.cpp +++ b/sycl/test-e2e/Matrix/SG32/joint_matrix_out_bounds.cpp @@ -10,7 +10,7 @@ // REQUIRES: aspect-ext_intel_matrix // REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943 -// UNSUPPORTED: gpu-intel-dg2, cpu +// UNSUPPORTED: gpu-intel-dg2, cpu, arch-intel_gpu_pvc // UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW // RUN: %{build} -o %t.out diff --git a/sycl/test-e2e/Matrix/joint_matrix_out_bounds_colmajor.cpp b/sycl/test-e2e/Matrix/joint_matrix_out_bounds_colmajor.cpp index dc8ea4d4b6084..b42505217dfef 100644 --- a/sycl/test-e2e/Matrix/joint_matrix_out_bounds_colmajor.cpp +++ b/sycl/test-e2e/Matrix/joint_matrix_out_bounds_colmajor.cpp @@ -9,7 +9,7 @@ // REQUIRES: aspect-ext_intel_matrix -// UNSUPPORTED: gpu-intel-dg2, cpu +// UNSUPPORTED: gpu-intel-dg2, cpu, arch-intel_gpu_pvc // UNSUPPORTED-INTENDED: Checked load/stores are not supported by DG2 and CPU HW // RUN: %{build} -o %t.out diff --git a/sycl/test-e2e/Matrix/lit.local.cfg b/sycl/test-e2e/Matrix/lit.local.cfg index ee0e8d803145a..45f7f8c8f6cf5 100644 --- a/sycl/test-e2e/Matrix/lit.local.cfg +++ b/sycl/test-e2e/Matrix/lit.local.cfg @@ -8,9 +8,9 @@ if 'windows' in config.available_features: config.unsupported_features += ['arch-intel_gpu_bmg_g21'] # https://github.com/intel/llvm/issues/18932 -has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values()) -if has_arch_gpu_intel_pvc: - config.unsupported_features += ['level_zero_v2_adapter'] +# has_arch_gpu_intel_pvc = any('arch-intel_gpu_pvc' in T for T in config.sycl_dev_features.values()) +# if has_arch_gpu_intel_pvc: +# config.unsupported_features += ['level_zero_v2_adapter'] config.substitutions.append(("%helper-includes", "-I {}/Inputs".format(os.path.dirname(os.path.abspath(__file__))))) original_clangxx="" diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm.cpp index ed5b3a3b02066..87b60dd12c1c0 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t1.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t1.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm_initialized_on_host.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm_initialized_on_host.cpp index 1a77511275d4d..ddfe981e2381f 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm_initialized_on_host.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_host_usm_initialized_on_host.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memcpy.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memcpy.cpp index f52798d2b0da1..b1d0da43aa25b 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memcpy.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memcpy.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O2 -g -o %t1.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t1.out 2>&1 | FileCheck %s diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_no_overlap.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_no_overlap.cpp index b94da10a53294..ff8a3d3cc1c32 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_no_overlap.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_no_overlap.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_overlap.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_overlap.cpp index e9368e65c49a8..a1f865189d37e 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_overlap.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_kernel_memmove_overlap.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t0.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t0.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK diff --git a/sycl/test-e2e/MemorySanitizer/track-origins/check_shared_usm.cpp b/sycl/test-e2e/MemorySanitizer/track-origins/check_shared_usm.cpp index e561aaec87ff9..5e2c8a4867756 100644 --- a/sycl/test-e2e/MemorySanitizer/track-origins/check_shared_usm.cpp +++ b/sycl/test-e2e/MemorySanitizer/track-origins/check_shared_usm.cpp @@ -1,6 +1,4 @@ // REQUIRES: linux, cpu || (gpu && level_zero) -// XFAIL: run-mode && linux && arch-intel_gpu_pvc && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/19585 // RUN: %{build} %device_msan_flags -Xarch_device -fsanitize-memory-track-origins=1 -O0 -g -o %t1.out // RUN: env UR_LAYER_MSAN_OPTIONS=msan_check_host_and_shared_usm:1 %{run} %t1.out 2>&1 | FileCheck %s --check-prefixes CHECK,CHECK-ORIGIN-STACK diff --git a/sycl/test-e2e/MultiDevice/set_arg_pointer.cpp b/sycl/test-e2e/MultiDevice/set_arg_pointer.cpp index 39b7ceb79488e..5d75420b4f2a2 100644 --- a/sycl/test-e2e/MultiDevice/set_arg_pointer.cpp +++ b/sycl/test-e2e/MultiDevice/set_arg_pointer.cpp @@ -1,9 +1,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// UNSUPPORTED: level_zero_v2_adapter -// UNSUPPORTED-TRACKER: CMPLRLLVM-67039 - // Test that usm device pointer can be used in a kernel compiled for a context // with multiple devices. diff --git a/sycl/test-e2e/ProfilingTag/profile_tag_leak.cpp b/sycl/test-e2e/ProfilingTag/profile_tag_leak.cpp index 82d11779345db..7908d518a9a52 100644 --- a/sycl/test-e2e/ProfilingTag/profile_tag_leak.cpp +++ b/sycl/test-e2e/ProfilingTag/profile_tag_leak.cpp @@ -1,7 +1,8 @@ // REQUIRES: level_zero // // UNSUPPORTED: windows && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20852 +// UNSUPPORTED-TRACKER: Re-enable when windows L0 loader gets updated to +// ver >= 2.25.2, https://github.com/intel/llvm/issues/20852 // // RUN: %{build} -o %t.out // RUN: %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK diff --git a/sycl/test-e2e/ProfilingTag/profiling_queue.cpp b/sycl/test-e2e/ProfilingTag/profiling_queue.cpp index 3deab1406d429..a8ccfb85d52f4 100644 --- a/sycl/test-e2e/ProfilingTag/profiling_queue.cpp +++ b/sycl/test-e2e/ProfilingTag/profiling_queue.cpp @@ -20,9 +20,6 @@ // UNSUPPORTED: cuda // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/14053 -// UNSUPPORTED: level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/19116 -// // UNSUPPORTED: ((intel_gpu_acm{{.*}} || intel_gpu_pvc || intel_gpu_bmg{{.*}}) && (!level_zero)) || preview-mode // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/19425 diff --git a/sycl/test-e2e/Regression/profiling_tag_cached_conflicting.cpp b/sycl/test-e2e/Regression/profiling_tag_cached_conflicting.cpp index d023b5c52feeb..11064d4290182 100644 --- a/sycl/test-e2e/Regression/profiling_tag_cached_conflicting.cpp +++ b/sycl/test-e2e/Regression/profiling_tag_cached_conflicting.cpp @@ -14,9 +14,6 @@ // UNSUPPORTED: cuda // UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/14053 -// UNSUPPORTED: level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760 - #include #include diff --git a/sycl/test-e2e/Regression/reduction_resource_leak_dw.cpp b/sycl/test-e2e/Regression/reduction_resource_leak_dw.cpp index f41f0794afb87..eadd866ad38ee 100644 --- a/sycl/test-e2e/Regression/reduction_resource_leak_dw.cpp +++ b/sycl/test-e2e/Regression/reduction_resource_leak_dw.cpp @@ -1,7 +1,9 @@ // REQUIRES: level_zero // // UNSUPPORTED: windows && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20852 +// UNSUPPORTED-TRACKER: Re-enable when windows L0 loader gets updated to +// ver >= 2.25.2, https://github.com/intel/llvm/issues/20852 + // // RUN: %{build} -o %t.out // RUN: %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s diff --git a/sycl/test-e2e/USM/usm_leak_check.cpp b/sycl/test-e2e/USM/usm_leak_check.cpp index 3245c52130a52..441346ab59666 100644 --- a/sycl/test-e2e/USM/usm_leak_check.cpp +++ b/sycl/test-e2e/USM/usm_leak_check.cpp @@ -1,7 +1,8 @@ // REQUIRES: level_zero // // UNSUPPORTED: windows && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20852 +// UNSUPPORTED-TRACKER: Re-enable when windows L0 loader gets updated to +// ver >= 2.25.2, https://github.com/intel/llvm/issues/20852 // RUN: %{build} -Wno-error=deprecated-declarations -o %t.out diff --git a/sycl/test-e2e/bindless_images/array/fetch_sampled_array.cpp b/sycl/test-e2e/bindless_images/array/fetch_sampled_array.cpp index ad34c46a14108..7e162d54d8773 100644 --- a/sycl/test-e2e/bindless_images/array/fetch_sampled_array.cpp +++ b/sycl/test-e2e/bindless_images/array/fetch_sampled_array.cpp @@ -2,9 +2,6 @@ // REQUIRES: aspect-ext_oneapi_image_array // UNSUPPORTED: target-amd // UNSUPPORTED-INTENDED: image array not currently supported on AMD -// UNSUPPORTED: linux && arch-intel_gpu_bmg_g21 && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20223 - // RUN: %{build} -o %t.out // RUN: %{run} env NEOReadDebugKeys=1 UseBindlessMode=1 UseExternalAllocatorForSshAndDsh=1 %t.out diff --git a/sycl/test-e2e/bindless_images/array/read_sampled_array.cpp b/sycl/test-e2e/bindless_images/array/read_sampled_array.cpp index 2e5c5d8469ba6..2d3138886c6e6 100644 --- a/sycl/test-e2e/bindless_images/array/read_sampled_array.cpp +++ b/sycl/test-e2e/bindless_images/array/read_sampled_array.cpp @@ -4,9 +4,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// UNSUPPORTED: linux && arch-intel_gpu_bmg_g21 && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20223 - // Print test names and pass status. // #define VERBOSE_LV1 diff --git a/sycl/test-e2e/bindless_images/copies/copy_subregion_2D.cpp b/sycl/test-e2e/bindless_images/copies/copy_subregion_2D.cpp index a9deb5e336d8a..59697c77b11c0 100644 --- a/sycl/test-e2e/bindless_images/copies/copy_subregion_2D.cpp +++ b/sycl/test-e2e/bindless_images/copies/copy_subregion_2D.cpp @@ -2,8 +2,6 @@ // UNSUPPORTED: gpu // UNSUPPORTED-INTENDED: sporadic failure in CI // https://github.com/intel/llvm/issues/20006 -// XFAIL: linux && arch-intel_gpu_acm_g10 && level_zero_v2_adapter -// XFAIL-TRACKER: https://github.com/intel/llvm/issues/20004 // XFAIL: hip // XFAIL-TRACKER: https://github.com/intel/llvm/issues/19957 diff --git a/sycl/test-e2e/bindless_images/read_sampled.cpp b/sycl/test-e2e/bindless_images/read_sampled.cpp index c4b39ae12e96f..67562e6e07254 100644 --- a/sycl/test-e2e/bindless_images/read_sampled.cpp +++ b/sycl/test-e2e/bindless_images/read_sampled.cpp @@ -3,9 +3,6 @@ // UNSUPPORTED: hip // UNSUPPORTED-INTENDED: Returning non-FP values from sampling fails on HIP. -// UNSUPPORTED: linux && arch-intel_gpu_bmg_g21 && level_zero_v2_adapter -// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/20223 - // RUN: %{build} -o %t.out // RUN: %{run-unfiltered-devices} %t.out