1
1

Revert "ompi_info: report MPI1 compat is disabled"

This reverts commit 61ccc65302.

Signed-off-by: Geoffrey Paulsen <gpaulsen@us.ibm.com>
Этот коммит содержится в:
Geoffrey Paulsen 2019-05-14 18:40:34 -05:00
родитель 76dfaceedc
Коммит 54a286ee9d

Просмотреть файл

@ -16,7 +16,6 @@
* Copyright (c) 2015 Intel, Inc. All rights reserved
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
* Copyright (c) 2019 Triad National Security, LLC. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -135,7 +134,6 @@ void ompi_info_do_config(bool want_all)
char *crdebug_support;
char *topology_support;
char *ipv6_support;
char *mpi1_compat_support;
/* Do a little preprocessor trickery here to figure opal_info_out the
* 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)
symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no";
topology_support = "yes";
ipv6_support = OPAL_ENABLE_IPV6 ? "yes" : "no";
/*
* hardwire to no since we don't have MPI1 compat post v4.0.x
*/
mpi1_compat_support = "no";
/* setup strings that require allocation */
if (OMPI_BUILD_FORTRAN_BINDINGS >= OMPI_FORTRAN_MPIFH_BINDINGS) {
@ -675,8 +669,6 @@ void ompi_info_do_config(bool want_all)
opal_info_out("Host topology support", "options:host-topology",
topology_support);
opal_info_out("IPv6 support", "options:ipv6", ipv6_support);
opal_info_out("MPI1 compatibility", "options:mpi1-compatibility",
mpi1_compat_support);
opal_info_out("MPI extensions", "options:mpi_ext", OMPI_MPIEXT_COMPONENTS);