1
1
openmpi/config/opal_check_ugni.m4
Nathan Hjelm d2f5fca82a configure: add a summary section at the end of configure output
This commit adds two m4 macros: OPAL_SUMMARY_ADD, OPAL_SUMMARY_PRINT.
OPAL_SUMMARY_ADD adds an item to a section in the summary. For example
OPAL_SUMMARY_ADD([[Transports]],[[Foo]],...,[yes]) will add the
following to the summary:

Transports
-----------------------
Foo: yes

With this commit two sections are added: Transports, Resource Managers.

The OPAL_SUMMARY_PRINT macro is called after AC_OUTPUT and prints out
some information about the build (version, projects, etc) and then
the summarys sections. It will additionally print a warning if
internal debugging is enabled.

Example output:

Open MPI configuration:
-----------------------
Version: 3.0.0 a1
Build Open Platform Abstration project: yes
Build Open Runtime project: yes
Build Open MPI project: yes
Build Open SHMEM project: no
MPI C++ bindings (deprecated): no
MPI Fortran bindings: mpif.h, use mpi, use mpi_f08
Debug build: yes

Transports
-----------------------
Cray uGNI (Gemini/Aries): no
Intel Omnipath (PSM2): no
KNEM Shared Memory: no
Linux CMA IPC: no
Mellanox MXM: no
Open UCX: no
OpenFabrics libfabric: no
OpenFabrics Verbs: no
portals4: no
QLogic Infinipath (PSM): no
tcp: yes
XPMEM Shared Memory: no

Resource Managers
-----------------------
Cray Alps: no
Grid Engine: no
LSF: no
Slurm: yes
Torque: yes

INTERNAL DEBUGGING IS ENABLED. DO NOT USE THIS BUILD FOR PERFORMANCE MEASUREMENTS!

Signed-off-by: Nathan Hjelm <hjelmn@me.com>
2016-03-08 10:04:15 -07:00

83 строки
3.4 KiB
Plaintext

dnl -*- Mode: Shell-script ; indent-tabs-mode:nil -*-
dnl
dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
dnl University Research and Technology
dnl Corporation. All rights reserved.
dnl Copyright (c) 2004-2005 The University of Tennessee and The University
dnl of Tennessee Research Foundation. All rights
dnl reserved.
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
dnl University of Stuttgart. All rights reserved.
dnl Copyright (c) 2004-2006 The Regents of the University of California.
dnl All rights reserved.
dnl Copyright (c) 2006 QLogic Corp. All rights reserved.
dnl Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
dnl Copyright (c) 2011-2016 Los Alamos National Security, LLC. All rights
dnl reserved.
dnl Copyright (c) 2014 Intel, Inc. All rights reserved
dnl Copyright (c) 2015 Research Organization for Information Science
dnl and Technology (RIST). All rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
dnl
dnl $HEADER$
dnl
# OPAL_CHECK_UGNI(prefix, [action-if-found], [action-if-not-found])
# --------------------------------------------------------
# check if GNI support can be found. sets prefix_{CPPFLAGS,
# LDFLAGS, LIBS} as needed and runs action-if-found if there is
# support, otherwise executes action-if-not-found
#
AC_DEFUN([OPAL_CHECK_UGNI], [
if test -z "$opal_check_ugni_happy" ; then
AC_ARG_WITH([ugni], [AC_HELP_STRING([--with-ugni],
[Build support for Cray GNI. Set PKG_CONFIG_PATH env. variable to specify alternate path.])])
opal_check_ugni_happy="no"
AS_IF([test "$with_ugni" = "no"],
[opal_check_ugni_happy="no"],
[PKG_CHECK_MODULES([CRAY_UGNI], [cray-ugni],
[opal_check_ugni_happy="yes"],
[opal_check_ugni_happy="no"])])
opal_check_ugni_$1_save_CPPFLAGS="$CPPFLAGS"
opal_check_ugni_$1_save_LIBS="$LIBS"
if test "$opal_check_ugni_happy" = "yes" ; then
CPPFLAGS="$CPPFLAGS $CRAY_UGNI_CFLAGS"
LIBS="$LIBS $CRAY_UGNI_LIBS"
# echo "+++++++++++++++++++++++CPPFLAGS",$CPPFLAGS
# echo "+++++++++++++++++++++++LDFLAGSS",$LDFLAGS
# echo "+++++++++++++++++++++++1_CPPFLAGS",$$1_CPPFLAGS
# echo "+++++++++++++++++++++++1_LDFLAGSS",$$1_LDFLAGS
# sanity checks
AC_CHECK_HEADER([gni_pub.h],[],AC_MSG_ERROR(['gni_pub.h not found.']))
AC_CHECK_FUNCS([GNI_GetJobResInfo])
CPPFLAGS="$opal_check_ugni_$1_save_CPPFLAGS"
LIBS="$opal_check_ugni_$1_save_LIBS"
fi
AS_IF([test "$opal_check_ugni_happy" = "yes" && test "$enable_progress_threads" = "yes"],
[AC_MSG_WARN([GNI driver does not currently support progress threads. Disabling.])
opal_check_ugni_happy="no"])
OMPI_SUMMARY_ADD([[Transports]],[[Cray uGNI (Gemini/Aries)]],[$1],[$opal_check_ugni_happy])
fi
AS_IF([test "$opal_check_ugni_happy" = "yes"],
[$1_CPPFLAGS="[$]$1_CPPFLAGS $CRAY_UGNI_CFLAGS"
$1_LIBS="[$]$1_LIBS $CRAY_UGNI_LIBS"
$2],
[AS_IF([test ! -z "$with_ugni" && test "$with_ugni" != "no"],
[AC_MSG_ERROR([GNI support requested but not found. Cannot continue.])])
$3])
])