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
The implementation of KokkosBlas::dot incorrectly assumes the default execution space, by using expressions like Kokkos::parallel_reduce(numRows, op);, instead of an explicit Kokkos::RangePolicy<execution_space, ...>. Check other KokkosBlas kernels as well.
The text was updated successfully, but these errors were encountered:
mhoemmen
changed the title
KokkosBlas::dot assumes default execution space for single-vector kernels
Some KokkosBlas kernels assume default execution space
Mar 21, 2017
The implementation of KokkosBlas::dot incorrectly assumes the default execution space, by using expressions like
Kokkos::parallel_reduce(numRows, op);
, instead of an explicitKokkos::RangePolicy<execution_space, ...>
. Check other KokkosBlas kernels as well.The text was updated successfully, but these errors were encountered: