Skip to content

Commit

Permalink
Merge pull request #1637 from lucbv/swap_fix_tpls
Browse files Browse the repository at this point in the history
SWAP: fixing obvious mistake in TPL layer : (
  • Loading branch information
ndellingwood authored Jan 27, 2023
2 parents 7ea79ba + 8cf69b3 commit 8cf5fff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions blas/tpls/KokkosBlas1_swap_tpl_spec_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ namespace Impl {
using YVector = Kokkos::View<Kokkos::complex<float>*, LAYOUT, \
Kokkos::Device<EXECSPACE, Kokkos::HostSpace>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>; \
static void rot(EXECSPACE const& /*space*/, XVector const& X, \
YVector const& Y) { \
static void swap(EXECSPACE const& /*space*/, XVector const& X, \
YVector const& Y) { \
Kokkos::Profiling::pushRegion( \
"KokkosBlas::swap[TPL_BLAS,complex<float>]"); \
HostBlas<std::complex<float>>::swap( \
Expand Down Expand Up @@ -325,8 +325,8 @@ namespace Impl {
using YVector = Kokkos::View<Kokkos::complex<float>, LAYOUT, \
Kokkos::Device<EXECSPACE, MEMSPACE>, \
Kokkos::MemoryTraits<Kokkos::Unmanaged>>; \
static void rot(EXECSPACE const& space, XVector const& X, \
YVector const& Y) { \
static void swap(EXECSPACE const& space, XVector const& X, \
YVector const& Y) { \
Kokkos::Profiling::pushRegion( \
"KokkosBlas::swap[TPL_CUBLAS,complex<float>]"); \
swap_print_specialization<EXECSPACE, XVector, YVector>(); \
Expand Down

0 comments on commit 8cf5fff

Please sign in to comment.