forked from kokkos/kokkos
-
Notifications
You must be signed in to change notification settings - Fork 0
Kokkos::ParallelForTag
David Poliakoff edited this page May 1, 2020
·
2 revisions
Header File: Kokkos_ExecPolicy.hpp
A tag used in team size calculation functions to indicate that the functor for which a team size is being requested is being used in a parallel_for
Usage:
using PolicyType = Kokkos::TeamPolicy<>;
PolicyType policy;
int recommended_team_size = policy.team_size_recommended(
Functor, Kokkos::ParallelForTag());
struct ParallelForTag{};
None
None
Default
None
Home:
- Introduction
- Machine Model
- Programming Model
- Compiling
- Initialization
- View
- Parallel Dispatch
- Hierarchical Parallelism
- Custom Reductions
- Atomic Operations
- Subviews
- Interoperability
- Kokkos and Virtual Functions
- Initialization and Finalization
- View
- Data Parallelism
- Execution Policies
- Spaces
- Task Parallelism
- Utilities
- STL Compatibility
- Numerics
- Detection Idiom