Skip to content

Commit

Permalink
Merge pull request #2030 from lucbv/syr2_fix2
Browse files Browse the repository at this point in the history
Syr2: fix2
  • Loading branch information
lucbv authored Nov 7, 2023
2 parents 78455b4 + 196fa44 commit 49f4c23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blas/unit_test/Test_Blas2_syr2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class Syr2Tester {
void callKkGerAndCompareKkSyr2AgainstIt(
const ScalarA& alpha, TX& x, TY& y,
view_stride_adapter<_ViewTypeA, false>& org_A,
const _ViewTypeExpected& h_A_syr2, const std::string& situation);
const _HostViewTypeA& h_A_syr2, const std::string& situation);

const bool _A_is_complex;
const bool _A_is_lr;
Expand Down Expand Up @@ -1574,7 +1574,7 @@ void Syr2Tester<ScalarX, tLayoutX, ScalarY, tLayoutY, ScalarA, tLayoutA,
callKkGerAndCompareKkSyr2AgainstIt(
const ScalarA& alpha, TX& x, TY& y,
view_stride_adapter<_ViewTypeA, false>& org_A,
const _ViewTypeExpected& h_A_syr2, const std::string& situation) {
const _HostViewTypeA& h_A_syr2, 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 49f4c23

Please sign in to comment.