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
This means that the the ordering of the PEs in unspecified as high=.FALSE. for both components.
I suggest basing the order on a lexical comparison of cdnam (remote component supplied as an argument to the routine) and compnm (the local component, known through mod_oasis_data)
In
mod_oasis_method.F90
when we attempt to make an intracommunicator from an intercommunicator we have the callCALL mpi_intercomm_merge(tmp_intercomm,.FALSE., new_comm, ierr)
This means that the the ordering of the PEs in unspecified as
high=.FALSE.
for both components.I suggest basing the order on a lexical comparison of
cdnam
(remote component supplied as an argument to the routine) andcompnm
(the local component, known through mod_oasis_data)Something like
CALL mpi_intercomm_merge(tmp_intercomm,trim(compnm) > trim(cdnam), new_comm, ierr)
This should put ATM before ICE before OCN and will be unique. Thoughts?
The text was updated successfully, but these errors were encountered: