We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf9c3cb commit 04abaa4Copy full SHA for 04abaa4
tests/unit_tests/blas/sycl-graph/gemm_batch_usm.cpp
@@ -368,6 +368,14 @@ struct GraphGemmBatchUsmTests
368
}
369
#endif
370
371
+#if SYCL_EXT_ONEAPI_BACKEND_LEVEL_ZERO
372
+ // https://github.com/uxlfoundation/oneMath/issues/703
373
+ // Failing tests reported on PVC that needs investigated
374
+ if (device->get_backend() == sycl::backend::ext_oneapi_level_zero) {
375
+ GTEST_SKIP() << "Test disabled on Level-Zero";
376
+ }
377
+#endif
378
+
379
// Skip test if graph recording variant and device doesn't support sycl_ext_oneapi_graph
380
CHECK_GRAPH_ON_DEVICE(device);
381
0 commit comments