guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

41/45: gnu: libflame: Switch to openblas.


From: guix-commits
Subject: 41/45: gnu: libflame: Switch to openblas.
Date: Thu, 4 Apr 2024 10:40:29 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit b6fa870405022655da6ba2bbc62909209c9820a8
Author: Romain GARBAGE <romain.garbage@inria.fr>
AuthorDate: Mon Mar 11 12:07:18 2024 +0100

    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>
---
 gnu/packages/maths.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 874eb8a6fd..2e8da8648b 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2764,9 +2764,9 @@ fixed point (16.16) format.")
                    (lambda* (#:key tests? #:allow-other-keys)
                      (substitute* "test/Makefile"
                        (("LIBBLAS .*")
-                        "LIBBLAS = -lblas\n")
+                        "LIBBLAS = -lopenblas\n")
                        (("LIBLAPACK .*")
-                        "LIBLAPACK = -llapack\n"))
+                        "LIBLAPACK = -lopenblas\n"))
                      (when tests?
                        (with-directory-excursion "test"
                          (mkdir "obj")
@@ -2785,7 +2785,7 @@ fixed point (16.16) format.")
                                                     "/include/FLAME.h")
                                      (string-append static "/include"))))))))
       (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")
       (description "@code{libflame} is a portable library for dense matrix
 computations, providing much of the functionality present in LAPACK, developed



reply via email to

[Prev in Thread] Current Thread [Next in Thread]