We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f6f12 commit ff781edCopy full SHA for ff781ed
libsyclinterface/tests/test_sycl_event_interface.cpp
@@ -40,7 +40,7 @@ sycl::event produce_event(sycl::queue &Q, sycl::buffer<int> &data)
40
int N = data.get_range()[0];
41
42
auto e1 = Q.submit([&](sycl::handler &h) {
43
- sycl::accessor a{data, h, sycl::write_only, sycl::noinit};
+ sycl::accessor a{data, h, sycl::write_only, sycl::no_init};
44
h.parallel_for(N, [=](sycl::id<1> i) { a[i] = 1; });
45
});
46
0 commit comments