Per the details and schedule outlined in the attached RFC, Mellanox Technologies would like to CMR the new 'coll/hcoll' component. This component enables Mellanox Technologies' latest HPC middleware offering - 'Hcoll'. 'Hcoll' is a high-performance, standalone collectives library with support for truly asynchronous, non-blocking, hierarchical collectives via hardware offload on supporting Mellanox HCAs (ConnectX-3 and above.) To build the component, libhcoll must first be installed on your system, then you must configure OMPI with the configure flag: '--with-hcoll=/path/to/libhcoll'. Subsequent to installing, you may select the 'coll/hcoll' component at runtime as you would any other coll component, e.g. '-mca coll hcoll,tuned,libnbc'. This has been reviewed by Josh Ladd and should be added to cmr:v1.7:reviewer=jladd
This commit was SVN r28694.
2013-07-02 02:39:43 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Copyright (c) 2011 Mellanox Technologies. All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# MCA_coll_hcoll_CONFIG([action-if-can-compile],
|
|
|
|
# [action-if-cant-compile])
|
|
|
|
# ------------------------------------------------
|
|
|
|
AC_DEFUN([MCA_ompi_coll_hcoll_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([ompi/mca/coll/hcoll/Makefile])
|
|
|
|
|
|
|
|
OMPI_CHECK_HCOLL([coll_hcoll],
|
|
|
|
[coll_hcoll_happy="yes"],
|
|
|
|
[coll_hcoll_happy="no"])
|
|
|
|
|
|
|
|
AS_IF([test "$coll_hcoll_happy" = "yes"],
|
|
|
|
[coll_hcoll_WRAPPER_EXTRA_LDFLAGS="$coll_hcoll_LDFLAGS"
|
|
|
|
coll_hcoll_CPPFLAGS="$coll_hcoll_CPPFLAGS"
|
|
|
|
coll_hcoll_WRAPPER_EXTRA_CPPFLAGS="$coll_hcoll_CPPFLAGS"
|
|
|
|
coll_hcoll_WRAPPER_EXTRA_LIBS="$coll_hcoll_LIBS"
|
|
|
|
$1],
|
|
|
|
[$2])
|
|
|
|
|
2013-12-08 13:45:13 +04:00
|
|
|
# substitute in the things needed to build hcoll
|
Per the details and schedule outlined in the attached RFC, Mellanox Technologies would like to CMR the new 'coll/hcoll' component. This component enables Mellanox Technologies' latest HPC middleware offering - 'Hcoll'. 'Hcoll' is a high-performance, standalone collectives library with support for truly asynchronous, non-blocking, hierarchical collectives via hardware offload on supporting Mellanox HCAs (ConnectX-3 and above.) To build the component, libhcoll must first be installed on your system, then you must configure OMPI with the configure flag: '--with-hcoll=/path/to/libhcoll'. Subsequent to installing, you may select the 'coll/hcoll' component at runtime as you would any other coll component, e.g. '-mca coll hcoll,tuned,libnbc'. This has been reviewed by Josh Ladd and should be added to cmr:v1.7:reviewer=jladd
This commit was SVN r28694.
2013-07-02 02:39:43 +04:00
|
|
|
AC_SUBST([coll_hcoll_CFLAGS])
|
|
|
|
AC_SUBST([coll_hcoll_CPPFLAGS])
|
|
|
|
AC_SUBST([coll_hcoll_LDFLAGS])
|
|
|
|
AC_SUBST([coll_hcoll_LIBS])
|
|
|
|
])dnl
|
|
|
|
|