kokkos-utils 0.0.1
 
Loading...
Searching...
No Matches
MemorySpace.hpp
Go to the documentation of this file.
1#ifndef KOKKOS_UTILS_CONCEPTS_MEMORYSPACE_HPP
2#define KOKKOS_UTILS_CONCEPTS_MEMORYSPACE_HPP
3
4#include "Kokkos_Concepts.hpp"
5
7{
8
10template <typename T>
11concept MemorySpace = Kokkos::is_memory_space_v<T>;
12
13} // namespace Kokkos::utils::concepts
14
15#endif // KOKKOS_UTILS_CONCEPTS_MEMORYSPACE_HPP
Specify that a type is a Kokkos memory space.