Skip to content

Commit 54a286e

Browse files
committed
Revert "ompi_info: report MPI1 compat is disabled"
This reverts commit 61ccc65. Signed-off-by: Geoffrey Paulsen <[email protected]>
1 parent 76dface commit 54a286e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

ompi/tools/ompi_info/param.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
* Copyright (c) 2015 Intel, Inc. All rights reserved
1717
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
1818
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
19-
* Copyright (c) 2019 Triad National Security, LLC. All rights reserved.
2019
* $COPYRIGHT$
2120
*
2221
* Additional copyrights may follow
@@ -135,7 +134,6 @@ void ompi_info_do_config(bool want_all)
135134
char *crdebug_support;
136135
char *topology_support;
137136
char *ipv6_support;
138-
char *mpi1_compat_support;
139137

140138
/* Do a little preprocessor trickery here to figure opal_info_out the
141139
* tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or
@@ -289,10 +287,6 @@ void ompi_info_do_config(bool want_all)
289287
symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no";
290288
topology_support = "yes";
291289
ipv6_support = OPAL_ENABLE_IPV6 ? "yes" : "no";
292-
/*
293-
* hardwire to no since we don't have MPI1 compat post v4.0.x
294-
*/
295-
mpi1_compat_support = "no";
296290

297291
/* setup strings that require allocation */
298292
if (OMPI_BUILD_FORTRAN_BINDINGS >= OMPI_FORTRAN_MPIFH_BINDINGS) {
@@ -675,8 +669,6 @@ void ompi_info_do_config(bool want_all)
675669
opal_info_out("Host topology support", "options:host-topology",
676670
topology_support);
677671
opal_info_out("IPv6 support", "options:ipv6", ipv6_support);
678-
opal_info_out("MPI1 compatibility", "options:mpi1-compatibility",
679-
mpi1_compat_support);
680672

681673
opal_info_out("MPI extensions", "options:mpi_ext", OMPI_MPIEXT_COMPONENTS);
682674

0 commit comments

Comments
 (0)