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
|
// 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 <TestHIP_Category.hpp>
namespace Test {
struct TestAsyncLauncher {
size_t *m_flag;
size_t m_value;
KOKKOS_INLINE_FUNCTION
void operator()(const int /*i*/) const {
// and update flag
Kokkos::atomic_add(m_flag, m_value);
}
TestAsyncLauncher(size_t *flag, int value) : m_flag(flag), m_value(value) {}
void run() {
Kokkos::parallel_for(Kokkos::RangePolicy<TEST_EXECSPACE>(0, 1), *this);
}
};
TEST(hip, async_launcher) {
size_t *flag;
KOKKOS_IMPL_HIP_SAFE_CALL(hipMalloc(&flag, sizeof(size_t)));
KOKKOS_IMPL_HIP_SAFE_CALL(hipMemset(flag, 0, sizeof(size_t)));
// launch # of cycles * 1000 kernels w/ distinct values
auto space = Kokkos::HIP();
auto instance = space.impl_internal_space_instance();
size_t nkernels = 1000;
for (size_t i = 0; i < nkernels; ++i) {
TestAsyncLauncher(flag, i).run();
}
// and check results -- if any of the driver types were overwritten
// the sum below should fail
instance->fence();
size_t h_flag;
KOKKOS_IMPL_HIP_SAFE_CALL(
hipMemcpy(&h_flag, flag, sizeof(size_t), hipMemcpyHostToDevice));
ASSERT_EQ(h_flag, (nkernels * (nkernels - 1)) / 2);
KOKKOS_IMPL_HIP_SAFE_CALL(hipFree(flag));
}
} // namespace Test
|