Skip to content

Commit 7642921

Browse files
committed
Add XFAIL for host_task_in_order_dependency with Windows Gen12
1 parent e7155b7 commit 7642921

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sycl/test-e2e/Graph/RecordReplay/host_task_in_order_dependency.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
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) {

0 commit comments

Comments
 (0)