We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e642c7b commit c5ee33dCopy full SHA for c5ee33d
pyuvsim/uvsim.py
@@ -725,7 +725,7 @@ def run_uvdata_uvsim(
725
Ntasks_tot = Ntasks_local * Nsky_parts
726
# Sum all the tasks across each node
727
Nsky_parts = comm.allreduce(Nsky_parts, op=mpi.MPI.MAX)
728
- Ntasks_tot = comm.allreduce(Ntasks_tot, op=mpi.MPI.SUM)
+ Ntasks_tot = int(np.ceil(comm.allreduce(Ntasks_tot, op=mpi.MPI.SUM)))
729
if rank == 0 and not quiet:
730
if Nsky_parts > 1:
731
print(
0 commit comments