Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ompi/tools/ompi_info/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
* Copyright (c) 2014-2017 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* 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
Expand Down Expand Up @@ -132,6 +135,7 @@ 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
Expand Down Expand Up @@ -285,6 +289,7 @@ 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";
mpi1_compat_support = OMPI_ENABLE_MPI1_COMPAT ? "yes" : "no";

/* setup strings that require allocation */
if (OMPI_BUILD_FORTRAN_BINDINGS >= OMPI_FORTRAN_MPIFH_BINDINGS) {
Expand Down Expand Up @@ -643,6 +648,8 @@ 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);

Expand Down