Update Kokkos library in LAMMPS to v3.6.0
This commit is contained in:
@ -49,7 +49,10 @@ namespace Test {
|
||||
// Test Interoperability with SYCL Streams
|
||||
TEST(sycl, raw_sycl_queues) {
|
||||
sycl::default_selector device_selector;
|
||||
sycl::queue queue(device_selector);
|
||||
// FIXME_SYCL using an in-order queue here should not be necessary since we
|
||||
// are using submit_barrier for managing kernel dependencies but this seems to
|
||||
// be required as a hot fix for now.
|
||||
sycl::queue queue(device_selector, sycl::property::queue::in_order());
|
||||
Kokkos::InitArguments arguments{-1, -1, -1, false};
|
||||
Kokkos::initialize(arguments);
|
||||
int* p = sycl::malloc_device<int>(100, queue);
|
||||
|
||||
Reference in New Issue
Block a user