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
It would be a nice improvement to perform MPI all-to-all reductions in place when possible and to remove temporary variables, especially when their name is not clear (temp1, temp2, ...)
The text was updated successfully, but these errors were encountered:
Several all-to-all MPI reductions are using a temporary variable :
Incompact3d/src/Case-TGV.f90
Line 298 in 5565268
However, MPI reductions can be performed in place to avoid temporary variables :
Incompact3d/src/navier.f90
Line 1541 in 5565268
It would be a nice improvement to perform MPI all-to-all reductions in place when possible and to remove temporary variables, especially when their name is not clear (
temp1
,temp2
, ...)The text was updated successfully, but these errors were encountered: