8736a1c138
http://www.open-mpi.org/community/lists/devel/2014/05/14822.php Revamp the ORTE global data structures to reduce memory footprint and add new features. Add ability to control/set cpu frequency, though this can only be done if the sys admin has setup the system to support it (or you run as root). This commit was SVN r31916.
24 строки
646 B
Bash
24 строки
646 B
Bash
dnl -*- shell-script -*-
|
|
dnl
|
|
dnl Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
dnl $COPYRIGHT$
|
|
dnl
|
|
dnl Additional copyrights may follow
|
|
dnl
|
|
dnl $HEADER$
|
|
dnl
|
|
|
|
# MCA_rtc_freq_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_orte_rtc_freq_CONFIG], [
|
|
AC_CONFIG_FILES([orte/mca/rtc/freq/Makefile])
|
|
|
|
# do not build if not on linux
|
|
AC_MSG_CHECKING([for freq control support])
|
|
AS_IF([test "$opal_found_linux" = "yes"],
|
|
[AC_MSG_RESULT([yes])
|
|
$1],
|
|
[AC_MSG_RESULT([only supported on Linux systems])
|
|
$2])
|
|
])dnl
|