b89f8fabc9
The project includes following components and frameworks: - ML Collective component - NETPATTERNS and COMMPATTERNS common components - BCOL framework - SBGP framework Note: By default the ML collective component is disabled. In order to enable new collectives user should bump up the priority of ml component (coll_ml_priority) ============================================= Primary Contributors (in alphabetical order): Ishai Rabinovich (Mellanox) Joshua S. Ladd (ORNL / Mellanox) Manjunath Gorentla Venkata (ORNL) Mike Dubman (Mellanox) Noam Bloch (Mellanox) Pavel (Pasha) Shamis (ORNL / Mellanox) Richard Graham (ORNL / Mellanox) Vasily Filipov (Mellanox) This commit was SVN r27078.
41 строка
1.2 KiB
Bash
41 строка
1.2 KiB
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
|
|
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_ompi_sbgp_ibnet_CONFIG([should_build])
|
|
# ------------------------------------------
|
|
# AC_DEFUN([MCA_ompi_sbgp_ibnet_POST_CONFIG], [
|
|
# ])
|
|
|
|
|
|
# MCA_ompi_sbgp_ibnet_CONFIG([action-if-can-compile],
|
|
# [action-if-cant-compile])
|
|
# ------------------------------------------------
|
|
AC_DEFUN([MCA_ompi_sbgp_ibnet_CONFIG],[
|
|
AC_CONFIG_FILES([ompi/mca/sbgp/ibnet/Makefile])
|
|
sbgp_ofa_happy="no"
|
|
sbgp_mlnx_ofed_happy="no"
|
|
|
|
OMPI_CHECK_OPENFABRICS([sbgp_ibnet], [sbgp_ofa_happy="yes"])
|
|
OMPI_CHECK_MLNX_OPENFABRICS([sbgp_ibnet], [sbgp_mlnx_ofed_happy="yes"])
|
|
|
|
AS_IF([test "$sbgp_ofa_happy" = "yes" -a "$sbgp_mlnx_ofed_happy" = "yes"],
|
|
[sbgp_ibnet_WRAPPER_EXTRA_LDFLAGS="$sbgp_ibnet_LDFLAGS"
|
|
sbgp_ibnet_WRAPPER_EXTRA_LIBS="$sbgp_ibnet_LIBS"
|
|
$1],
|
|
[$2])
|
|
|
|
# substitute in the things needed to build iboffload
|
|
AC_SUBST([sbgp_ibnet_CFLAGS])
|
|
AC_SUBST([sbgp_ibnet_CPPFLAGS])
|
|
AC_SUBST([sbgp_ibnet_LDFLAGS])
|
|
AC_SUBST([sbgp_ibnet_LIBS])
|
|
])dnl
|