Browse Source
academic/spqr: Updated for version 2.0.7.
academic/spqr: Updated for version 2.0.7.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>pull/27/head
committed by
David Spencer
6 changed files with 83 additions and 75 deletions
-
10academic/spqr/README
-
26academic/spqr/atlas-threaded-blas.diff
-
21academic/spqr/patches/atlas-lib-rename.diff
-
71academic/spqr/patches/autotoolize.diff
-
24academic/spqr/spqr.SlackBuild
-
6academic/spqr/spqr.info
@ -1,26 +0,0 @@ |
|||
diff --git a/ax_blas.m4 b/ax_blas.m4
|
|||
--- a/ax_blas.m4
|
|||
+++ b/ax_blas.m4
|
|||
@@ -117,12 +117,16 @@
|
|||
# BLAS in ATLAS library? (http://math-atlas.sourceforge.net/) |
|||
if test $ax_blas_ok = no; then |
|||
AC_CHECK_LIB(atlas, ATL_xerbla, |
|||
- [AC_CHECK_LIB(f77blas, $sgemm,
|
|||
- [AC_CHECK_LIB(cblas, cblas_dgemm,
|
|||
- [ax_blas_ok=yes
|
|||
- BLAS_LIBS="-lcblas -lf77blas -latlas"],
|
|||
- [], [-lf77blas -latlas])],
|
|||
- [], [-latlas])])
|
|||
+ [AC_CHECK_LIB(ptf77blas, $sgemm,
|
|||
+ [AC_CHECK_LIB(ptcblas, cblas_dgemm,
|
|||
+ [ax_blas_ok=yes; BLAS_LIBS="-lptcblas -lptf77blas -latlas"],,
|
|||
+ [-lptf77blas -latlas])],
|
|||
+ [AC_CHECK_LIB(f77blas, $sgemm,
|
|||
+ [AC_CHECK_LIB(cblas, cblas_dgemm,
|
|||
+ [ax_blas_ok=yes; BLAS_LIBS="-lcblas -lf77blas -latlas"],,
|
|||
+ [-lf77blas -latlas])],,
|
|||
+ [-latlas])],
|
|||
+ [-latlas])])
|
|||
fi |
|||
|
|||
# BLAS in PhiPACK libraries? (requires generic BLAS lib, too) |
|||
@ -0,0 +1,21 @@ |
|||
diff --git a/m4/ax_blas.m4 b/m4/ax_blas.m4
|
|||
--- a/m4/ax_blas.m4
|
|||
+++ b/m4/ax_blas.m4
|
|||
@@ -116,13 +116,10 @@
|
|||
|
|||
# BLAS in ATLAS library? (http://math-atlas.sourceforge.net/) |
|||
if test $ax_blas_ok = no; then |
|||
- AC_CHECK_LIB(atlas, ATL_xerbla,
|
|||
- [AC_CHECK_LIB(f77blas, $sgemm,
|
|||
- [AC_CHECK_LIB(cblas, cblas_dgemm,
|
|||
- [ax_blas_ok=yes
|
|||
- BLAS_LIBS="-lcblas -lf77blas -latlas"],
|
|||
- [], [-lf77blas -latlas])],
|
|||
- [], [-latlas])])
|
|||
+ AC_CHECK_LIB(tatlas, $sgemm,
|
|||
+ [ax_blas_ok=yes; BLAS_LIBS="-ltatlas"],
|
|||
+ [AC_CHECK_LIB(satlas, $sgemm,
|
|||
+ [ax_blas_ok=yes; BLAS_LIBS="-lsatlas"])])
|
|||
fi |
|||
|
|||
# BLAS in PhiPACK libraries? (requires generic BLAS lib, too) |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue