You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the time reduction uses MPI_Allreduce simply because some reduction routines already existed in mpi_routines.h
This performs an extra unnecessary step of sending the result back out to all procs, but I believe only proc 0 needs the reduced data. MPI_Reduce should suffice.
The text was updated successfully, but these errors were encountered:
Currently the time reduction uses MPI_Allreduce simply because some reduction routines already existed in mpi_routines.h
This performs an extra unnecessary step of sending the result back out to all procs, but I believe only proc 0 needs the reduced data. MPI_Reduce should suffice.
The text was updated successfully, but these errors were encountered: