From f0b87bc0bd03370cdc7589c9e7ad500f1a5f7ec9 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 14 Sep 2011 19:22:08 +0000 Subject: [PATCH] Users will have no clue what "hwloc" is -- call it "host topology support" This commit was SVN r25143. --- ompi/tools/ompi_info/param.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ompi/tools/ompi_info/param.c b/ompi/tools/ompi_info/param.c index e56c8a2ba8..7d011f0af4 100644 --- a/ompi/tools/ompi_info/param.c +++ b/ompi/tools/ompi_info/param.c @@ -516,7 +516,7 @@ void ompi_info_do_config(bool want_all) char *symbol_visibility; char *ft_support; char *crdebug_support; - char *hwloc_support; + char *topology_support; /* Do a little preprocessor trickery here to figure ompi_info_out the * tri-state of MPI_PARAM_CHECK (which will be either 0, 1, or * ompi_mpi_param_check). The preprocessor will only allow @@ -561,7 +561,7 @@ void ompi_info_do_config(bool want_all) have_mpi_io = OMPI_PROVIDE_MPI_FILE_INTERFACE ? "yes" : "no"; wtime_support = OPAL_TIMER_USEC_NATIVE ? "native" : "gettimeofday"; symbol_visibility = OPAL_C_HAVE_VISIBILITY ? "yes" : "no"; - hwloc_support = OPAL_HAVE_HWLOC ? "yes" : "no"; + topology_support = OPAL_HAVE_HWLOC ? "yes" : "no"; /* setup strings that require allocation */ if (OMPI_WANT_F77_BINDINGS) { @@ -834,7 +834,8 @@ void ompi_info_do_config(bool want_all) ompi_info_out("MPI I/O support", "options:mpi-io", have_mpi_io); ompi_info_out("MPI_WTIME support", "options:mpi-wtime", wtime_support); ompi_info_out("Symbol vis. support", "options:visibility", symbol_visibility); - ompi_info_out("Hwloc support", "options:hwloc", hwloc_support); + ompi_info_out("Host topology support", "options:host-topology", + topology_support); ompi_info_out("MPI extensions", "options:mpi_ext", OMPI_MPIEXT_COMPONENTS);