diff --git a/src/batched/dense/impl/KokkosBatched_Gemm_Armpl_Impl.hpp b/src/batched/dense/impl/KokkosBatched_Gemm_Armpl_Impl.hpp index f66a236ffc..b4919686a8 100644 --- a/src/batched/dense/impl/KokkosBatched_Gemm_Armpl_Impl.hpp +++ b/src/batched/dense/impl/KokkosBatched_Gemm_Armpl_Impl.hpp @@ -291,6 +291,7 @@ class BatchedArmplGemm { os << "KokkosBatched::Impl::BatchedArmplGemm requires the ARMPL TPL" << std::endl; Kokkos::Impl::throw_runtime_exception(os.str()); + return 1; } }; } // namespace Impl diff --git a/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp b/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp index 4864728e07..4b161b4e4e 100644 --- a/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp +++ b/unit_test/batched/dense/Test_Batched_BatchedGemm.hpp @@ -36,9 +36,7 @@ void impl_test_batched_gemm_with_handle(BatchedGemmHandle* batchedGemmHandle, fmsg_rhs += ("B:" + std::to_string(matBdim1) + "x" + std::to_string(matBdim2) + ", "); fmsg_rhs += - ("C:" + std::to_string(matCdim1) + "x" + std::to_string(matCdim2) + ", "); - fmsg_rhs += ("alpha:" + std::to_string(alpha) + ", "); - fmsg_rhs += ("beta:" + std::to_string(beta) + "\n"); + ("C:" + std::to_string(matCdim1) + "x" + std::to_string(matCdim2) + "\n"); if (std::is_same::value) { a_expected = ViewType("a_expected", N, matAdim1, matAdim2);