fix a use of cerr instead of cout in tabulate_mpi
This commit is contained in:
parent
d3693daeaa
commit
f14c3e359e
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue