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