-
Notifications
You must be signed in to change notification settings - Fork 0
/
acinclude.m4
90 lines (68 loc) · 1.74 KB
/
acinclude.m4
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
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