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