Skip to content

Commit

Permalink
ompi/schizo: Expose "--mca" when parsing command line.
Browse files Browse the repository at this point in the history
Signed-off-by: Austen Lauria <awlauria@us.ibm.com>
  • Loading branch information
awlauria authored and rhc54 committed Mar 29, 2022
1 parent eb95027 commit 4dfcdd3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/mca/schizo/ompi/schizo_ompi.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,11 @@ static int parse_cli(char **argv, pmix_cli_result_t *results,
p1 = opt->values[n];
prte_schizo_base_expose(p1, "PMIX_MCA_");
}
} else if(0 == strcmp(opt->key, "mca") || 0 == strcmp(opt->key, "omca")) {
for (n=0; NULL != opt->values[n]; n++) {
p1 = opt->values[n];
prte_schizo_base_expose(p1, "OMPI_MCA_");
}
#if PRTE_ENABLE_FT
} else if (0 == strcmp(opt->key, "with-ft")) {
if (NULL == opt->values || NULL == opt->values[0]) {
Expand Down

0 comments on commit 4dfcdd3

Please sign in to comment.