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
|
// 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 <gtest/gtest.h>
/// @Kokkos_Feature_Level_Required:3
// Unit Test for Kokkos malloc.
// Allocate memory to a pointer and check if the allocation has not returned a
// null pointer.
namespace Test {
using value_type = double;
const int num_elements = 10;
template <class ExecSpace>
struct TestIncrMemorySpace_malloc {
using memory_space = typename ExecSpace::memory_space;
void test_malloc() {
// Allocate memory
auto *data = static_cast<value_type *>(Kokkos::kokkos_malloc<memory_space>(
"data", num_elements * sizeof(value_type)));
// Check if the allocated memory has not returned a NULL
ASSERT_NE(data, nullptr);
// Free the allocated memory
Kokkos::kokkos_free<memory_space>(data);
}
};
TEST(TEST_CATEGORY, IncrTest_03a_memspace_malloc) {
TestIncrMemorySpace_malloc<TEST_EXECSPACE> test;
test.test_malloc();
}
} // namespace Test
|