diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-03-11 12:06:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-04-04 16:17:17 +0200 |
commit | 0e8011a9987c271f226cebb800ed6dbaa3c282a3 (patch) | |
tree | dac36132764ada1130249237ec07e366b3c80faa | |
parent | 2a9b6ac7ec805d4e9d137ee26e6a5ab539eba2bd (diff) | |
download | guix-0e8011a9987c271f226cebb800ed6dbaa3c282a3.tar.gz guix-0e8011a9987c271f226cebb800ed6dbaa3c282a3.zip |
gnu: hypre: Switch to openblas.
* gnu/packages/maths.scm (hypre): Switch input dependency from
lapack to openblas.
Change-Id: I8bc2c3abf0d3ead52c9616e1a23bf4ac6113ac3b
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index a38278f20a..f9b91cf600 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -7108,7 +7108,7 @@ set.") texlive-xcolor texlive-xypic)))) (inputs - (list openblas lapack)) + (list openblas)) (arguments `(#:modules ((srfi srfi-1) ,@%gnu-build-system-modules) |