Skip to content

Commit dd8f6d1

Browse files
committed
Fix data race in multiple_exec_graphs test
1 parent d3445ef commit dd8f6d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sycl/test-e2e/Graph/Inputs/multiple_exec_graphs.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
// graph.
33

44
#include "../graph_common.hpp"
5+
#include <sycl/properties/queue_properties.hpp>
56

67
int main() {
7-
queue Queue{};
8+
queue Queue{{sycl::property::queue::in_order{}}};
89

910
using T = int;
1011

0 commit comments

Comments
 (0)