Skip to content

Commit

Permalink
Merge pull request #330 from kokkos/PhilMiller-patch-3
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
fnrizzi committed Mar 3, 2023
2 parents 8308eb2 + acc26c1 commit 3f892a7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -5,7 +5,7 @@ The accesses in `parallel_for`, `parallel_reduce`, or `parallel_scan` do not occ

## The alternative

We introduced a new alias named [`SharedSpace`](SharedSpace) in Kokkos 4.0. This always points to memory that is accessible by every [`ExecutionSpace`](ExecutionSpaceConcept) and is migrated without user interaction to the acessing `ExecutioSpace` on demand. After migration the memory is accessed locally.
We introduced a new alias named [`SharedSpace`](SharedSpace) in Kokkos 4.0. This always points to memory that is accessible by every [`ExecutionSpace`](ExecutionSpaceConcept) and is migrated without user interaction to the acessing `ExecutionSpace` on demand. After migration the memory is accessed locally.
Using the alias e.g. in `Views` is expressive and thus easier to read. Furthermore, it is portable to every backend that can automatically migrate memory between `ExecutionSpaces`.
Furthermore, we introduced the alias [`SharedHostPinnedSpace`](SharedHostPinnedSpace) which points to memory that is accessible by all enabled `ExecutionSpaces` but always resides in the memory of the host.

Expand Down

0 comments on commit 3f892a7

Please sign in to comment.