d2f5fca82a
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>
60 строки
2.4 KiB
Bash
60 строки
2.4 KiB
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# 1. if --with-sge is given, always build
|
|
# 2. if --without-sge is given, never build
|
|
# 3. if neither is given, build if-and-only-if you find either qrsh in path or
|
|
# sge_root in environment
|
|
|
|
# ORTE_CHECK_GRIDENGINE(prefix, [action-if-found], [action-if-not-found])
|
|
# --------------------------------------------------------
|
|
AC_DEFUN([ORTE_CHECK_GRIDENGINE],[
|
|
if test -z "$orte_gridengine_build" ; then
|
|
AC_ARG_WITH([sge],
|
|
[AC_HELP_STRING([--with-sge],
|
|
[Build SGE or Grid Engine support (default: no)])])
|
|
|
|
AC_MSG_CHECKING([if user requested SGE build])
|
|
orte_gridengine_build="no"
|
|
AS_IF([test "$with_sge" = "yes"],
|
|
[AC_MSG_RESULT([yes])
|
|
orte_gridengine_build=yes],
|
|
[AS_IF([test "$with_sge" = "no"],
|
|
[AC_MSG_RESULT([no])],
|
|
[AC_MSG_RESULT([not specified; checking environment])
|
|
AC_CHECK_PROG([QRSH], [qrsh], [qrsh])
|
|
AS_IF([test "$QRSH" != ""],
|
|
[orte_gridengine_build=yes],
|
|
[AC_MSG_CHECKING([for SGE_ROOT environment variable])
|
|
AS_IF([test "$SGE_ROOT" != ""],
|
|
[AC_MSG_RESULT([found])
|
|
orte_gridengine_build=yes],
|
|
[AC_MSG_RESULT([not found])])])])])
|
|
|
|
OMPI_SUMMARY_ADD([[Resource Managers]],[[Grid Engine]],[$1],[$orte_gridengine_build])
|
|
fi
|
|
|
|
AS_IF([test "$orte_gridengine_build" = "yes"],
|
|
[$2],
|
|
[$3])
|
|
])
|