kokkos-utils 0.0.1
 
Loading...
Searching...
No Matches
Kokkos::utils::concepts::ViewOfInstanceOf Concept Reference

Specify that a type is a Kokkos::View, whose value type is an instance of a given class template U. More...

#include <View.hpp>

Concept definition

template<typename T, template< typename... > class U>
concept Kokkos::utils::concepts::ViewOfInstanceOf = View<T> && impl::InstanceOf<typename T::value_type, U>
Specify that a type is a Kokkos::View, whose value type is an instance of a given class template U.
Definition View.hpp:31
Specify that a type is a Kokkos::View.
Definition View.hpp:15

Detailed Description

Specify that a type is a Kokkos::View, whose value type is an instance of a given class template U.

Definition at line 31 of file View.hpp.