File: Test03a_MemorySpace_malloc.hpp

package info (click to toggle)
kokkos 5.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,148 kB
  • sloc: cpp: 225,388; sh: 1,250; python: 78; makefile: 16; fortran: 4; ansic: 2
file content (44 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download
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