gnu: libflame: Switch to openblas.
* gnu/packages/maths.scm (libflame): Switch input dependency from lapack to openblas. Change-Id: I7abdb8d126856488b0722b73c336309bf5c2234d Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
be0e9ee519
commit
b6fa870405
|
@ -2764,9 +2764,9 @@ fixed point (16.16) format.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(substitute* "test/Makefile"
|
(substitute* "test/Makefile"
|
||||||
(("LIBBLAS .*")
|
(("LIBBLAS .*")
|
||||||
"LIBBLAS = -lblas\n")
|
"LIBBLAS = -lopenblas\n")
|
||||||
(("LIBLAPACK .*")
|
(("LIBLAPACK .*")
|
||||||
"LIBLAPACK = -llapack\n"))
|
"LIBLAPACK = -lopenblas\n"))
|
||||||
(when tests?
|
(when tests?
|
||||||
(with-directory-excursion "test"
|
(with-directory-excursion "test"
|
||||||
(mkdir "obj")
|
(mkdir "obj")
|
||||||
|
@ -2785,7 +2785,7 @@ fixed point (16.16) format.")
|
||||||
"/include/FLAME.h")
|
"/include/FLAME.h")
|
||||||
(string-append static "/include"))))))))
|
(string-append static "/include"))))))))
|
||||||
(inputs (list gfortran))
|
(inputs (list gfortran))
|
||||||
(native-inputs (list lapack perl python-wrapper))
|
(native-inputs (list openblas perl python-wrapper))
|
||||||
(synopsis "High-performance library for @acronym{DLA, dense linear algebra} computations")
|
(synopsis "High-performance library for @acronym{DLA, dense linear algebra} computations")
|
||||||
(description "@code{libflame} is a portable library for dense matrix
|
(description "@code{libflame} is a portable library for dense matrix
|
||||||
computations, providing much of the functionality present in LAPACK, developed
|
computations, providing much of the functionality present in LAPACK, developed
|
||||||
|
|
Reference in New Issue