fix typo in rocsparsesolver

This commit is contained in:
Razvan Nane 2024-10-09 20:27:01 +02:00
parent 4e8c793cd6
commit 82f32be1d9

View File

@ -596,13 +596,13 @@ analyze_matrix()
}
#elif HIP_VERSION >= 50400000
if constexpr (std::is_same_v<Scalar,float>) {
ROCSPARSE_CHECK(rocsparse_dbsrmv_ex_analysis(handle, dir, operation,
ROCSPARSE_CHECK(rocsparse_sbsrmv_ex_analysis(handle, dir, operation,
Nb, Nb, nnzb,
descr_A, d_Avals,
d_Arows, d_Acols,
block_size, spmv_info));
} else {
ROCSPARSE_CHECK(rocsparse_sbsrmv_ex_analysis(handle, dir, operation,
ROCSPARSE_CHECK(rocsparse_dbsrmv_ex_analysis(handle, dir, operation,
Nb, Nb, nnzb,
descr_A, d_Avals,
d_Arows, d_Acols,