-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfigure.ac
131 lines (93 loc) · 2.5 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
AC_PREREQ([2.69])
AC_INIT(hplai, 2.3b, [email protected])
AC_CONFIG_SRCDIR([include/hplai.hh])
AC_CONFIG_HEADERS([include/hplai_config.hh])
AX_PROG_CC_MPI
AC_PROG_RANLIB
AC_PROG_INSTALL
AM_INIT_AUTOMAKE([subdir-objects])
AM_PROG_CC_C_O
dnl
dnl AX_BLAS requires Fortran compiler and detects fortran libraries in $FLIBS
dnl
dnl AX_BLAS(LIBS="$BLAS_LIBS $LIBS $FLIBS")
dnl
AC_DEFUN([HPL_BLAS], [
AC_PREREQ(2.69)
hpl_blas_ok=no
dnl FIXME: add --with-blas="<library spec>"
current_LIBS="$LIBS"
cat <<HPLEOF > hplvars.txt
name1=OpenBLAS
rout1=dgemm_
libs1=-lopenblas -lm
name2=Atlas Fortran BLAS
rout2=dgemm_
libs2=-lf77blas -latlas
name3=Sequential Intel MKL LP64 (group)
rout3=dgemm_
libs3=-Wl,--start-group -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread
name4=Sequential Intel MKL LP64
rout4=dgemm_
libs4=-lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread
name5=AMD's ACML
rout5=dgemm_
libs5=-lacml -lm
name6=Accelerate
rout6=dgemm_
libs6=-framework Accelerate
name7=Apple VecLib
rout7=dgemm_
libs7=-framework vecLib
name8=IBM ESSL
rout8=dgemm_
libs8=-lessl
name9=NVIDIA nvblas
rout9=dgemm_
libs9=-lnvblas
name10=Generic BLAS
rout10=dgemm_
libs10=-lblas
HPLEOF
for hpl_i in 1 2 3 4 5 6 7 8 9 10;
do
if test x$hpl_blas_ok = xno; then
name="`grep ^name${hpl_i}= hplvars.txt | sed s/^name${hpl_i}=//`"
rout="`grep ^rout${hpl_i}= hplvars.txt | sed s/^rout${hpl_i}=//`"
libs="`grep ^libs${hpl_i}= hplvars.txt | sed s/^libs${hpl_i}=//`"
AC_MSG_CHECKING([for [$]rout in [$]name])
LIBS="[$]libs"
AC_TRY_LINK_FUNC([$]rout, [hpl_blas_ok=yes;BLAS_LIBS="[$]libs"])
LIBS="$current_LIBS"
AC_MSG_RESULT($hpl_blas_ok)
fi
done
rm hplvars.txt
if test x$hpl_blas_ok = xno; then
dnl
AC_MSG_CHECKING([for dgemm_ in OpenBLAS])
AC_CHECK_LIB(openblas, dgemm_, [hpl_blas_ok=yes;BLAS_LIBS="-lopenblas"])
AC_MSG_RESULT($hpl_blas_ok)
dnl
fi
AC_SUBST(BLAS_LIBS)
# If present, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
if test x"$hpl_blas_ok" = xyes; then
ifelse([$1],,AC_DEFINE(HAVE_BLAS,1,[Define if you have a BLAS library.]),[$1])
:
else
hpl_blas_ok=no
$2
fi
])dnl HPL_BLAS
HPL_BLAS(LIBS="$BLAS_LIBS $LIBS",AC_MSG_ERROR([BLAS not found]))
dnl FIXME: test for CBLAS: Atlas, MKL, OpenBLAS, ESSL, ...
dnl FIXME: test for GSL CBLAS
AC_CHECK_FUNCS([dgemm_])
AC_CHECK_HEADERS([mpi.h])
AC_CHECK_HEADERS([blas.hh])
AC_PROG_CXX
dnl FIXME: AX_CXX_CHECK_LIB(blaspp, [blas::blaspp_version()])
AC_CHECK_LIB(blaspp, dgemm_)
AC_CONFIG_FILES([Makefile src/Makefile testing/Makefile])
AC_OUTPUT