Skip to content

Commit

Permalink
fixes to trans_mode_kk_to_onemkl callsites
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Dec 7, 2023
1 parent e66697d commit bf41c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blas/tpls/KokkosBlas3_gemm_tpl_spec_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ TPL_SCALAR_TYPE is the type MKL accents for SCALAR_TYPE
const int64_t cst = is_lr ? C.stride(0) : C.stride(1); \
const int64_t ldc = cst == 0 ? 1 : cst; \
\
oneapi::mkl::transpose transa = trans_mode_kk_to_onemkl(transA); \
oneapi::mkl::transpose transb = trans_mode_kk_to_onemkl(transB); \
oneapi::mkl::transpose transa = trans_mode_kk_to_onemkl(transA[0]); \
oneapi::mkl::transpose transb = trans_mode_kk_to_onemkl(transB[0]); \
oneapi::mkl::blas::compute_mode mode = oneapi::mkl::blas::compute_mode::standard; \
\
if constexpr (!is_lr) { \
Expand Down

0 comments on commit bf41c0f

Please sign in to comment.