This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Execution Policies
Damien L-G edited this page Aug 13, 2021
·
6 revisions
Policy | Description |
---|---|
RangePolicy | Each iterate is an integer in a contiguous range |
MDRangePolicy | Each iterate for each rank is an integer in a contiguous range |
TeamPolicy | Assigns to each iterate in a contiguous range a team of threads |
Nested Execution Policies are used to dispatch parallel work inside of an already executing parallel region either dispatched with a TeamPolicy or a task policy.
Policy | Description |
---|---|
TeamThreadRange | Used inside of a TeamPolicy kernel to perform nested parallel loops split over threads of a team. |
TeamVectorRange | Used inside of a TeamPolicy kernel to perform nested parallel loops split over threads of a team and their vector lanes. |
ThreadVectorRange | Used inside of a TeamPolicy kernel to perform nested parallel loops with vector lanes of a thread. |
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