Skip to content

Commit 7d02379

Browse files
authored
[SYCL][Graph] Add missing no_immediate_command_list property (#11578)
All the SYCL-Graph tests currently require the `no_immediate_command_list` to be set on queue creation to run portably across all hardware. This property was missing from the `barrier_with_work.cpp` test, resulting in fails on some hardware.
1 parent b60828d commit 7d02379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ event run_kernels_usm_with_barrier(queue Q, const size_t Size, T *DataA,
6262
}
6363

6464
int main() {
65-
queue Queue;
65+
queue Queue{{sycl::ext::intel::property::queue::no_immediate_command_list{}}};
6666

6767
using T = int;
6868

0 commit comments

Comments
 (0)