Skip to content

Commit

Permalink
missing template
Browse files Browse the repository at this point in the history
  • Loading branch information
tcclevenger committed Sep 11, 2020
1 parent 32611a9 commit 3fe76ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ekat/kokkos/ekat_kokkos_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ reshape (Kokkos::View<DataTypeIn,Props...> view_in,
* for a parallel kernel. On non-GPU archictures, we will generally have
* thread teams of 1.
*/
template <bool Serialize, typename ExeSpace = Kokkos::DefaultExecutionSpace>
template <bool Serialize, typename ExeSpace = Kokkos::DefaultExecutionSpace>
struct ExeSpaceUtils {
using TeamPolicy = Kokkos::TeamPolicy<ExeSpace>;

Expand Down Expand Up @@ -144,7 +144,7 @@ struct ExeSpaceUtils {
*/
#ifdef KOKKOS_ENABLE_CUDA
template <bool Serialize>
struct ExeSpaceUtils<Kokkos::Cuda> {
struct ExeSpaceUtils<Serialize,Kokkos::Cuda> {
using TeamPolicy = Kokkos::TeamPolicy<Kokkos::Cuda>;

static TeamPolicy get_default_team_policy (Int ni, Int nk) {
Expand Down

0 comments on commit 3fe76ca

Please sign in to comment.