2012-02-23 03:32:36 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2015-10-30 16:43:24 +03:00
|
|
|
# Copyright (c) 2012-2015 NVIDIA Corporation. All rights reserved.
|
2015-11-02 22:07:08 +03:00
|
|
|
# Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
|
|
# reserved.
|
2012-02-23 03:32:36 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# If CUDA support was requested, then build the CUDA memory pools.
|
|
|
|
# This code checks the variable CUDA_SUPPORT which was set earlier in
|
|
|
|
# the configure sequence by the opal_configure_options.m4 code.
|
|
|
|
#
|
|
|
|
|
2015-11-02 22:07:08 +03:00
|
|
|
AC_DEFUN([MCA_opal_rcache_rgpusm_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([opal/mca/rcache/rgpusm/Makefile])
|
2012-02-23 03:32:36 +04:00
|
|
|
|
|
|
|
# Use CUDA_SUPPORT which was filled in by the opal configure code.
|
2015-10-30 16:43:24 +03:00
|
|
|
AS_IF([test "x$CUDA_SUPPORT" = "x1"],
|
2012-02-23 03:32:36 +04:00
|
|
|
[$1],
|
|
|
|
[$2])
|
|
|
|
|
|
|
|
])dnl
|