fix a use of cerr instead of cout in tabulate_mpi

This commit is contained in:
Benji Dial 2024-06-07 11:34:22 -04:00
parent d3693daeaa
commit f14c3e359e

View file

@ -354,9 +354,11 @@ namespace lib94 {
MPI_Comm_rank(communicator, &comm_rank);
if constexpr (print_progress)
if (comm_rank == 0)
if (comm_rank == 0) {
for (int i = 0; i < comm_size; ++i)
std::cerr << '\n';
std::cout << '\n';
std::cout << std::flush;
}
int actual_count = w2_offsets.size();
int per_process = (actual_count - 1) / comm_size + 1;