You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kokkos pull request kokkos/kokkos#1321 fixes Kokkos issue kokkos/kokkos#1175 , by adding a new memory space, AnonymousSpace, that claims accessibility to and from all execution spaces.
This means that code that runs on Cuda, does not depend on UVM behavior, and does not need to allocate Views, should no longer need to distinguish between CudaSpace and CudaUVMSpace. This means, in turn, that kokkos-kernels no longer needs to instantiate most Cuda kernels for both memory spaces. It suffices to instantiate for the Cuda execution space.
This should help with #141 and should also reduce build time and library size.
The text was updated successfully, but these errors were encountered:
See my comment here: kokkos/kokkos#1321 (comment)
Kokkos pull request kokkos/kokkos#1321 fixes Kokkos issue kokkos/kokkos#1175 , by adding a new memory space,
AnonymousSpace
, that claims accessibility to and from all execution spaces.This means that code that runs on Cuda, does not depend on UVM behavior, and does not need to allocate Views, should no longer need to distinguish between
CudaSpace
andCudaUVMSpace
. This means, in turn, that kokkos-kernels no longer needs to instantiate most Cuda kernels for both memory spaces. It suffices to instantiate for the Cuda execution space.This should help with #141 and should also reduce build time and library size.
The text was updated successfully, but these errors were encountered: