Skip to content

Commit b20b9a5

Browse files
authored
Merge pull request #10700 from jjhursey/fix-singleton-spawn-gds
DPM: Force 'hash' GDS component when singleton spawn
2 parents 2659da6 + 245424c commit b20b9a5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ompi/dpm/dpm.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1611,6 +1611,11 @@ int ompi_dpm_spawn(int count, const char *array_of_commands[],
16111611
OPAL_LIST_DESTRUCT(&job_info);
16121612

16131613
if (ompi_singleton) {
1614+
/* The GDS 'hash' component is known to work for singleton, so
1615+
* recommend it. The user may set this envar to override the setting.
1616+
*/
1617+
setenv("PMIX_MCA_gds", "hash", 0);
1618+
/* Start the DVM */
16141619
rc = start_dvm(hostfiles, dash_host);
16151620
if (OPAL_SUCCESS != rc) {
16161621
if (NULL != pinfo) {

0 commit comments

Comments
 (0)