Kokkos Core Kernels Package Version of the Day
|
Execution policy for work over a range of an integral type. More...
#include <Kokkos_ExecPolicy.hpp>
Classes | |
struct | WorkRange |
Subrange for a partition's rank and size. More... | |
Public Types | |
using | execution_policy = RangePolicy<Properties...> |
Tag this class as an execution policy. | |
Public Member Functions | |
RangePolicy (const typename traits::execution_space &work_space, const member_type work_begin, const member_type work_end) | |
Total range. | |
RangePolicy (const member_type work_begin, const member_type work_end) | |
Total range. | |
template<class... Args> | |
RangePolicy (const typename traits::execution_space &work_space, const member_type work_begin, const member_type work_end, Args... args) | |
Total range. | |
template<class... Args> | |
RangePolicy (const member_type work_begin, const member_type work_end, Args... args) | |
Total range. | |
member_type | chunk_size () const |
return chunk_size | |
RangePolicy & | set_chunk_size (int chunk_size) |
set chunk_size to a discrete value | |
Execution policy for work over a range of an integral type.
Valid template argument options:
With a specified execution space: < ExecSpace , WorkTag , { IntConst | IntType } > < ExecSpace , WorkTag , void > < ExecSpace , { IntConst | IntType } , void > < ExecSpace , void , void >
With the default execution space: < WorkTag , { IntConst | IntType } , void > < WorkTag , void , void > < { IntConst | IntType } , void , void > < void , void , void >
IntType is a fundamental integral type IntConst is an Impl::integral_constant< IntType , Blocking >
Blocking is the granularity of partitioning the range among threads.
Definition at line 67 of file Kokkos_ExecPolicy.hpp.
using Kokkos::RangePolicy< Properties >::execution_policy = RangePolicy<Properties...> |
Tag this class as an execution policy.
Definition at line 83 of file Kokkos_ExecPolicy.hpp.
|
inline |
Total range.
Definition at line 117 of file Kokkos_ExecPolicy.hpp.
|
inline |
Total range.
Definition at line 128 of file Kokkos_ExecPolicy.hpp.
|
inline |
Total range.
Definition at line 135 of file Kokkos_ExecPolicy.hpp.
|
inline |
Total range.
Definition at line 149 of file Kokkos_ExecPolicy.hpp.
|
inline |
return chunk_size
Definition at line 176 of file Kokkos_ExecPolicy.hpp.
|
inline |
set chunk_size to a discrete value
Definition at line 179 of file Kokkos_ExecPolicy.hpp.