Revert hipStreamSynchronize placement in rocsparseSolverBackend.cpp

This commit is contained in:
Justin Chang 2023-10-06 09:38:44 -05:00 committed by GitHub
parent b5d8c3b5f0
commit 48a4ddec3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -538,9 +538,9 @@ void rocsparseSolverBackend<block_size>::solve_system(WellContributions &wellCon
// actually solve
gpu_pbicgstab(wellContribs, res);
HIP_CHECK(hipStreamSynchronize(stream));
if (verbosity >= 3) {
HIP_CHECK(hipStreamSynchronize(stream));
std::ostringstream out;
out << "rocsparseSolver::solve_system(): " << t.stop() << " s";
OpmLog::info(out.str());