Skip to content

Commit 53cd31e

Browse files
authored
Merge pull request #6504 from jjhursey/rm-hash-pmix4
Do not force 'hash' gds on direct modex in pmix4x
2 parents 4e0905c + 1314cf2 commit 53cd31e

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

opal/mca/pmix/pmix4x/pmix4x_client.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* Copyright (c) 2017-2018 The University of Tennessee and The University
1212
* of Tennessee Research Foundation. All rights
1313
* reserved.
14+
* Copyright (c) 2019 IBM Corporation. All rights reserved.
1415
* $COPYRIGHT$
1516
*
1617
* Additional copyrights may follow
@@ -101,11 +102,6 @@ int pmix4x_client_init(opal_list_t *ilist)
101102
ninfo = 0;
102103
}
103104

104-
/* check for direct modex use-case */
105-
if (opal_pmix_base_async_modex && !opal_pmix_collect_all_data) {
106-
opal_setenv("PMIX_MCA_gds", "hash", true, &environ);
107-
}
108-
109105
OPAL_PMIX_RELEASE_THREAD(&opal_pmix_base.lock);
110106
rc = PMIx_Init(&mca_pmix_pmix4x_component.myproc, pinfo, ninfo);
111107
if (NULL != pinfo) {

opal/mca/pmix/pmix4x/pmix4x_server_south.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* Copyright (c) 2017-2018 The University of Tennessee and The University
1313
* of Tennessee Research Foundation. All rights
1414
* reserved.
15+
* Copyright (c) 2019 IBM Corporation. All rights reserved.
1516
* $COPYRIGHT$
1617
*
1718
* Additional copyrights may follow
@@ -132,11 +133,6 @@ int pmix4x_server_init(opal_pmix_server_module_t *module,
132133
}
133134
}
134135

135-
/* check for direct modex use-case */
136-
if (opal_pmix_base_async_modex && !opal_pmix_collect_all_data) {
137-
opal_setenv("PMIX_MCA_gds", "hash", true, &environ);
138-
}
139-
140136
/* insert ourselves into our list of jobids - it will be the
141137
* first, and so we'll check it first */
142138
job = OBJ_NEW(opal_pmix4x_jobid_trkr_t);

0 commit comments

Comments
 (0)