Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Nov 4, 2024
1 parent 43ca51f commit 05f4c3f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/unit/multiplication/test_multiplication_hermitian.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ void testHermitianMultiplication(const blas::Side side, const blas::Uplo uplo, c
}

// SCOPED_TRACE cannot yield.
mat_ch.waitLocalTiles();
SCOPED_TRACE(::testing::Message() << "m " << m << "n " << n << ", mb " << mb << ", nb " << nb);
// mat_ch.waitLocalTiles();
// SCOPED_TRACE(::testing::Message() << "m " << m << "n " << n << ", mb " << mb << ", nb " << nb);
CHECK_MATRIX_NEAR(res_c, mat_ch, 10 * (m + 1) * TypeUtilities<T>::error,
10 * (m + 1) * TypeUtilities<T>::error);
}
Expand Down Expand Up @@ -166,6 +166,7 @@ TYPED_TEST(HermitianMultiplicationTestMC, CorrectnessLocal) {
testHermitianMultiplication<TypeParam, Backend::MC, Device::CPU>(side, uplo, m, n, mb, nb, alpha,
beta);
pika::wait();
std::cerr << "done\n";
}
}
}
Expand Down

0 comments on commit 05f4c3f

Please sign in to comment.