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
orte: use a unique top_session_dir directory when possible.
currently, top_session_dir is based on hostname, uid, HNP pid and job family.
there is a risk a top_session_dir exists and contains some old data when
a job starts, leading to undefined behavior.
if the app is started via mpirun, use a unique top_session_dir
mkdtemp("$TMP/ompi.<hostname>.<uid>/XXXXXX") that is passed to fork'ed MPI tasks
via the OPAL_MCA_PREFIX"orte_top_session_dir" environment variable.
if the app is direct launched, then the current behavior is unchanged.
direct launch behavior will be enhanced when PMIx is able to pass
a per-node directory (PMIX_NSDIR ?) to a direct launched task.
0 commit comments