cannam@167
|
1 dnl @synopsis AX_OPENMP([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
|
cannam@167
|
2 dnl @summary determine how to compile programs using OpenMP
|
cannam@167
|
3 dnl @category InstalledPackages
|
cannam@167
|
4 dnl
|
cannam@167
|
5 dnl This macro tries to find out how to compile programs that
|
cannam@167
|
6 dnl use OpenMP, a standard API and set of compiler directives for
|
cannam@167
|
7 dnl parallel programming (see http://www.openmp.org/).
|
cannam@167
|
8 dnl
|
cannam@167
|
9 dnl On success, it sets the OPENMP_CFLAGS/OPENMP_CXXFLAGS/OPENMP_FFLAGS
|
cannam@167
|
10 dnl output variable to the flag (e.g. -omp) used both to compile *and* link
|
cannam@167
|
11 dnl OpenMP programs in the current language.
|
cannam@167
|
12 dnl
|
cannam@167
|
13 dnl NOTE: You are assumed to not only compile your program with these
|
cannam@167
|
14 dnl flags, but also link it with them as well.
|
cannam@167
|
15 dnl
|
cannam@167
|
16 dnl If you want to compile everything with OpenMP, you should set:
|
cannam@167
|
17 dnl
|
cannam@167
|
18 dnl CFLAGS="$CFLAGS $OPENMP_CFLAGS"
|
cannam@167
|
19 dnl #OR# CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"
|
cannam@167
|
20 dnl #OR# FFLAGS="$FFLAGS $OPENMP_FFLAGS"
|
cannam@167
|
21 dnl
|
cannam@167
|
22 dnl (depending on the selected language).
|
cannam@167
|
23 dnl
|
cannam@167
|
24 dnl The user can override the default choice by setting the corresponding
|
cannam@167
|
25 dnl environment variable (e.g. OPENMP_CFLAGS).
|
cannam@167
|
26 dnl
|
cannam@167
|
27 dnl ACTION-IF-FOUND is a list of shell commands to run if an OpenMP
|
cannam@167
|
28 dnl flag is found, and ACTION-IF-NOT-FOUND is a list of commands
|
cannam@167
|
29 dnl to run it if it is not found. If ACTION-IF-FOUND is not specified,
|
cannam@167
|
30 dnl the default action will define HAVE_OPENMP.
|
cannam@167
|
31 dnl
|
cannam@167
|
32 dnl @version 2006-11-20
|
cannam@167
|
33 dnl @license GPLWithACException
|
cannam@167
|
34 dnl @author Steven G. Johnson <stevenj@alum.mit.edu>
|
cannam@167
|
35
|
cannam@167
|
36 AC_DEFUN([AX_OPENMP], [
|
cannam@167
|
37 AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX
|
cannam@167
|
38
|
cannam@167
|
39 AC_CACHE_CHECK([for OpenMP flag of _AC_LANG compiler], ax_cv_[]_AC_LANG_ABBREV[]_openmp, [save[]_AC_LANG_PREFIX[]FLAGS=$[]_AC_LANG_PREFIX[]FLAGS
|
cannam@167
|
40 ax_cv_[]_AC_LANG_ABBREV[]_openmp=unknown
|
cannam@167
|
41 # Flags to try: -fopenmp (gcc), -openmp (icc), -mp (SGI & PGI),
|
cannam@167
|
42 # -xopenmp (Sun), -omp (Tru64), -qsmp=omp (AIX), none
|
cannam@167
|
43 ax_openmp_flags="-fopenmp -openmp -mp -xopenmp -omp -qsmp=omp none"
|
cannam@167
|
44 if test "x$OPENMP_[]_AC_LANG_PREFIX[]FLAGS" != x; then
|
cannam@167
|
45 ax_openmp_flags="$OPENMP_[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flags"
|
cannam@167
|
46 fi
|
cannam@167
|
47 for ax_openmp_flag in $ax_openmp_flags; do
|
cannam@167
|
48 case $ax_openmp_flag in
|
cannam@167
|
49 none) []_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[] ;;
|
cannam@167
|
50 *) []_AC_LANG_PREFIX[]FLAGS="$save[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flag" ;;
|
cannam@167
|
51 esac
|
cannam@167
|
52 AC_TRY_LINK_FUNC(omp_set_num_threads,
|
cannam@167
|
53 [ax_cv_[]_AC_LANG_ABBREV[]_openmp=$ax_openmp_flag; break])
|
cannam@167
|
54 done
|
cannam@167
|
55 []_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[]FLAGS
|
cannam@167
|
56 ])
|
cannam@167
|
57 if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" = "xunknown"; then
|
cannam@167
|
58 m4_default([$2],:)
|
cannam@167
|
59 else
|
cannam@167
|
60 if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" != "xnone"; then
|
cannam@167
|
61 OPENMP_[]_AC_LANG_PREFIX[]FLAGS=$ax_cv_[]_AC_LANG_ABBREV[]_openmp
|
cannam@167
|
62 fi
|
cannam@167
|
63 m4_default([$1], [AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])])
|
cannam@167
|
64 fi
|
cannam@167
|
65 AC_SUBST(OPENMP_[]_AC_LANG_PREFIX[]FLAGS)
|
cannam@167
|
66 ])dnl AX_OPENMP
|