Skip to content

Commit

Permalink
Blas: nrm1, fix in tpl spec decl
Browse files Browse the repository at this point in the history
  • Loading branch information
lucbv committed Nov 21, 2023
1 parent ee9b6be commit b65279b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions blas/tpls/KokkosBlas1_nrm1_tpl_spec_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace Impl {
Kokkos::View<const SCALAR*, LAYOUT, Kokkos::Device<EXECSPACE, MEMSPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>, \
1, true, \
nrm1_tpl_spec_avail< \
nrm1_eti_spec_avail< \
EXECSPACE, \
Kokkos::View<typename Kokkos::ArithTraits<SCALAR>::mag_type, LAYOUT, \
Kokkos::HostSpace, \
Expand Down Expand Up @@ -82,7 +82,7 @@ namespace Impl {
} \
} else { \
Nrm1<EXECSPACE, RV, XV, 1, false, \
nrm1_tpl_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
nrm1_eti_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
X); \
} \
Kokkos::Profiling::popRegion(); \
Expand Down Expand Up @@ -167,7 +167,7 @@ void cublasAsumWrapper(const ExecutionSpace& space, RViewType& R,
Kokkos::View<const SCALAR*, LAYOUT, Kokkos::Device<EXECSPACE, MEMSPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>, \
1, true, \
nrm1_tpl_spec_avail< \
nrm1_eti_spec_avail< \
EXECSPACE, \
Kokkos::View<typename Kokkos::ArithTraits<SCALAR>::mag_type, LAYOUT, \
Kokkos::HostSpace, \
Expand All @@ -192,7 +192,7 @@ void cublasAsumWrapper(const ExecutionSpace& space, RViewType& R,
cublasAsumWrapper(space, R, X); \
} else { \
Nrm1<execution_space, RV, XV, 1, false, \
nrm1_tpl_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
nrm1_eti_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
X); \
} \
Kokkos::Profiling::popRegion(); \
Expand Down Expand Up @@ -278,7 +278,7 @@ void rocblasAsumWrapper(const ExecutionSpace& space, RViewType& R,
Kokkos::View<const SCALAR*, LAYOUT, Kokkos::Device<ExecSpace, MEMSPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>, \
1, true, \
nrm1_tpl_spec_avail< \
nrm1_eti_spec_avail< \
ExecSpace, \
Kokkos::View<typename Kokkos::ArithTraits<SCALAR>::mag_type, LAYOUT, \
Kokkos::HostSpace, \
Expand All @@ -302,7 +302,7 @@ void rocblasAsumWrapper(const ExecutionSpace& space, RViewType& R,
rocblasAsumWrapper(space, R, X); \
} else { \
Nrm1<ExecSpace, RV, XV, 1, false, \
nrm1_tpl_spec_avail<ExecSpace, RV, XV>::value>::nrm1(space, R, \
nrm1_eti_spec_avail<ExecSpace, RV, XV>::value>::nrm1(space, R, \
X); \
} \
Kokkos::Profiling::popRegion(); \
Expand Down Expand Up @@ -388,7 +388,7 @@ void onemklAsumWrapper(const ExecutionSpace& space, RViewType& R,
Kokkos::View<const SCALAR*, LAYOUT, Kokkos::Device<EXECSPACE, MEMSPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>, \
1, true, \
nrm1_tpl_spec_avail< \
nrm1_eti_spec_avail< \
EXECSPACE, \
Kokkos::View<typename Kokkos::ArithTraits<SCALAR>::mag_type, LAYOUT, \
Kokkos::HostSpace, \
Expand All @@ -413,7 +413,7 @@ void onemklAsumWrapper(const ExecutionSpace& space, RViewType& R,
onemklAsumWrapper(space, R, X); \
} else { \
Nrm1<execution_space, RV, XV, 1, false, \
nrm1_tpl_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
nrm1_eti_spec_avail<EXECSPACE, RV, XV>::value>::nrm1(space, R, \
X); \
} \
Kokkos::Profiling::popRegion(); \
Expand Down

0 comments on commit b65279b

Please sign in to comment.