File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
sycl/test-e2e/Graph/RecordReplay Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 33// Extra run to check for leaks in Level Zero using UR_L0_LEAKS_DEBUG
44// RUN: %if level_zero %{%{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
55//
6+ // XFAIL: level_zero && windows && gpu-intel-gen12
7+ // XFAIL-TRACKER: https://github.com/intel/llvm/issues/20696
8+ //
69// REQUIRES: aspect-usm_host_allocations
710
811// Tests injected barrier between an in-order operation in no event mode and a
@@ -19,7 +22,6 @@ int main() {
1922 constexpr int HostTaskValue = 7 ;
2023 sycl::queue Q{sycl::property::queue::in_order{}};
2124
22- // HostUSM USM so host_task and device kernel can both access.
2325 int *HostUSM = sycl::malloc_host<int >(1 , Q);
2426
2527 // Record graph with a single host_task that overwrites the value.
@@ -33,7 +35,7 @@ int main() {
3335 auto ExecGraph = Graph.finalize ();
3436
3537 exp_ext::single_task (Q, [=]() {
36- // Empirically determined to consistently trigger race condition when
38+ // Empirically determined to trigger race condition when
3739 // barrier is removed.
3840 int SpinIters = 500 ;
3941 for (volatile int i = 0 ; i < SpinIters; i += 1 ) {
You can’t perform that action at this time.
0 commit comments