Skip to content

Commit

Permalink
Applying clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
lucbv committed Jul 11, 2024
1 parent 6c95c0a commit 9898d10
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -824,11 +824,10 @@ struct kokkos_to_std_type_map<T, true> {
const AViewType& A, const XViewType& X, \
typename YViewType::const_value_type& beta, \
const YViewType& Y) { \
\
if(beta == Kokkos::ArithTraits<SCALAR>::zero()) { \
Kokkos::deep_copy(Y, Kokkos::ArithTraits<SCALAR>::zero()); \
} \
\
if (beta == Kokkos::ArithTraits<SCALAR>::zero()) { \
Kokkos::deep_copy(Y, Kokkos::ArithTraits<SCALAR>::zero()); \
} \
\
bool row_major = std::is_same<Kokkos::LayoutRight, LAYOUT>::value; \
const std::int64_t M = A.extent(0); \
const std::int64_t N = A.extent(1); \
Expand Down

0 comments on commit 9898d10

Please sign in to comment.