Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syr2: fix2 #2030

Merged
merged 2 commits into from
Nov 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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