Skip to content

Commit

Permalink
Correcting bug causing compilation errors with Trilinos (configuratio…
Browse files Browse the repository at this point in the history
…ns of Kokkos and KK requesting CudaUVM)
  • Loading branch information
eeprude committed Jun 15, 2023
1 parent 6fdd658 commit c4bdc88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blas/unit_test/Test_Blas2_syr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class SyrTester {
void callKkGerAndCompareKkSyrAgainstIt(
const ScalarA& alpha, TX& x,
view_stride_adapter<_ViewTypeA, false>& org_A,
const _ViewTypeExpected& h_A_syr, const std::string& situation);
const _HostViewTypeA& h_A_syr, const std::string& situation);

const bool _A_is_complex;
const bool _A_is_lr;
Expand Down Expand Up @@ -1429,7 +1429,7 @@ void SyrTester<ScalarX, tLayoutX, ScalarA, tLayoutA, Device>::
callKkGerAndCompareKkSyrAgainstIt(
const ScalarA& alpha, TX& x,
view_stride_adapter<_ViewTypeA, false>& org_A,
const _ViewTypeExpected& h_A_syr, const std::string& situation) {
const _HostViewTypeA& h_A_syr, const std::string& situation) {
view_stride_adapter<_ViewTypeA, false> A_ger("A_ger", _M, _N);
Kokkos::deep_copy(A_ger.d_base, org_A.d_base);

Expand Down

0 comments on commit c4bdc88

Please sign in to comment.