Skip to content

Commit

Permalink
Address CI errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Jan 11, 2022
1 parent 408e194 commit b8c5e42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/batched/dense/impl/KokkosBatched_Gemm_Armpl_Impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions unit_test/batched/dense/Test_Batched_BatchedGemm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<batchLayout, BatchLayout::Left>::value) {
a_expected = ViewType("a_expected", N, matAdim1, matAdim2);
Expand Down

0 comments on commit b8c5e42

Please sign in to comment.