1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project
#include <Kokkos_Macros.hpp>
#ifdef KOKKOS_ENABLE_EXPERIMENTAL_CXX20_MODULES
import kokkos.core;
#else
#include <Kokkos_Core.hpp>
#endif
#include <TestSYCL_Category.hpp>
#include <array>
namespace Test {
// Test whether allocations survive Kokkos initialize/finalize if done via Raw
// SYCL.
TEST(sycl, raw_sycl_interop) {
// Make sure all queues use the same context
Kokkos::initialize();
Kokkos::SYCL default_space;
sycl::context default_context = default_space.sycl_queue().get_context();
sycl::queue queue(default_context, sycl::default_selector_v,
sycl::property::queue::in_order());
constexpr int n = 100;
int* p = sycl::malloc_device<int>(n, queue);
{
TEST_EXECSPACE space(queue);
Kokkos::View<int*, Kokkos::MemoryTraits<Kokkos::Unmanaged>> v(p, n);
Kokkos::deep_copy(space, v, 5);
}
Kokkos::finalize();
queue.submit([&](sycl::handler& cgh) {
cgh.parallel_for(sycl::range<1>(n), [=](int idx) { p[idx] += idx; });
});
queue.wait_and_throw();
std::array<int, n> h_p;
queue.memcpy(h_p.data(), p, sizeof(int) * n);
queue.wait_and_throw();
sycl::free(p, queue);
int64_t sum = 0;
int64_t sum_expect = 0;
for (int i = 0; i < n; i++) {
sum += h_p[i];
sum_expect += 5 + i;
}
ASSERT_EQ(sum, sum_expect);
}
} // namespace Test
|