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>
78 строки
2.9 KiB
Bash
78 строки
2.9 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) 2009 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# ORTE_CHECK_SLURM(prefix, [action-if-found], [action-if-not-found])
|
|
# --------------------------------------------------------
|
|
AC_DEFUN([ORTE_CHECK_SLURM],[
|
|
if test -z "$orte_check_slurm_happy" ; then
|
|
AC_ARG_WITH([slurm],
|
|
[AC_HELP_STRING([--with-slurm],
|
|
[Build SLURM scheduler component (default: yes)])])
|
|
|
|
if test "$with_slurm" = "no" ; then
|
|
orte_check_slurm_happy="no"
|
|
elif test "$with_slurm" = "" ; then
|
|
# unless user asked, only build slurm component on linux, AIX,
|
|
# and OS X systems (these are the platforms that SLURM
|
|
# supports)
|
|
case $host in
|
|
*-linux*|*-aix*|*-apple-darwin*)
|
|
orte_check_slurm_happy="yes"
|
|
;;
|
|
*)
|
|
AC_MSG_CHECKING([for SLURM srun in PATH])
|
|
OPAL_WHICH([srun], [ORTE_CHECK_SLURM_SRUN])
|
|
if test "$ORTE_CHECK_SLURM_SRUN" = ""; then
|
|
orte_check_slurm_happy="no"
|
|
else
|
|
orte_check_slurm_happy="yes"
|
|
fi
|
|
AC_MSG_RESULT([$orte_check_slurm_happy])
|
|
;;
|
|
esac
|
|
else
|
|
orte_check_slurm_happy="yes"
|
|
fi
|
|
|
|
AS_IF([test "$orte_check_slurm_happy" = "yes"],
|
|
[AC_CHECK_FUNC([fork],
|
|
[orte_check_slurm_happy="yes"],
|
|
[orte_check_slurm_happy="no"])])
|
|
|
|
AS_IF([test "$orte_check_slurm_happy" = "yes"],
|
|
[AC_CHECK_FUNC([execve],
|
|
[orte_check_slurm_happy="yes"],
|
|
[orte_check_slurm_happy="no"])])
|
|
|
|
AS_IF([test "$orte_check_slurm_happy" = "yes"],
|
|
[AC_CHECK_FUNC([setpgid],
|
|
[orte_check_slurm_happy="yes"],
|
|
[orte_check_slurm_happy="no"])])
|
|
|
|
OMPI_SUMMARY_ADD([[Resource Managers]],[[Slurm]],[$1],[$orte_check_slurm_happy])
|
|
fi
|
|
|
|
AS_IF([test "$orte_check_slurm_happy" = "yes"],
|
|
[$2],
|
|
[$3])
|
|
])
|