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