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
API View
Daniel Arndt edited this page Feb 8, 2022
·
5 revisions
Data management is a critical part of any program. The main facility in Kokkos is the Kokkos::View
.
The following facilities are available:
-
View
: The main Kokkos data structure, a multi dimensional memory space and layout aware array. -
view_alloc
: Create View allocation parameter bundle from argument list. -
deep_copy
: Copying data between views and scalars. -
subview
: Getting slices from aKokkos::View
. -
realloc
: Reallocating aKokkos::View
. -
resize
: Resizinc aKokkos::View
. -
create_mirror
: Creating a copy of aKokkos::View
in a different memory space. -
create_mirror_view
: Creating a copy of aKokkos::View
in a different memory space, if the original view is not accessible in that space. -
LayoutLeft
: Memory Layout matching Fortran -
LayoutRight
: Memory Layout matching C -
LayoutStride
: Memory Layout for arbitrary strides
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