Skip to content

Commit c2581d0

Browse files
committed
Do not force 'hash' gds on direct modex
* Forcing the 'hash' gds component should not be necessary any more. Signed-off-by: Joshua Hursey <jhursey@us.ibm.com>
1 parent ad8c842 commit c2581d0

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

opal/mca/pmix/ext3x/ext3x_client.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* Copyright (c) 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
@@ -102,11 +103,6 @@ int ext3x_client_init(opal_list_t *ilist)
102103
ninfo = 0;
103104
}
104105

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

opal/mca/pmix/ext3x/ext3x_server_south.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* Copyright (c) 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
@@ -133,11 +134,6 @@ int ext3x_server_init(opal_pmix_server_module_t *module,
133134
}
134135
}
135136

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

0 commit comments

Comments
 (0)