From 9898d103ec4a0a6d08d0348e2a162222e157f103 Mon Sep 17 00:00:00 2001 From: Luc Berger-Vergiat Date: Thu, 11 Jul 2024 16:29:17 -0600 Subject: [PATCH] Applying clang-format --- blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp b/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp index ca9d3d46c6..07d9476b66 100644 --- a/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp +++ b/blas/tpls/KokkosBlas2_gemv_tpl_spec_decl.hpp @@ -824,11 +824,10 @@ struct kokkos_to_std_type_map { const AViewType& A, const XViewType& X, \ typename YViewType::const_value_type& beta, \ const YViewType& Y) { \ - \ - if(beta == Kokkos::ArithTraits::zero()) { \ - Kokkos::deep_copy(Y, Kokkos::ArithTraits::zero()); \ - } \ - \ + if (beta == Kokkos::ArithTraits::zero()) { \ + Kokkos::deep_copy(Y, Kokkos::ArithTraits::zero()); \ + } \ + \ bool row_major = std::is_same::value; \ const std::int64_t M = A.extent(0); \ const std::int64_t N = A.extent(1); \