diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2024-12-12 11:07:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-12 12:52:06 +0100 |
commit | 536202958c40c41015e8dfaffda2cca1a0c743ee (patch) | |
tree | d14859ae1684f536e80d323bb5cc75175ff26fc0 | |
parent | 3cd0b6a40497b1ec25ed26cc5cf4b42641a2a591 (diff) | |
download | guix-536202958c40c41015e8dfaffda2cca1a0c743ee.tar.gz guix-536202958c40c41015e8dfaffda2cca1a0c743ee.zip |
gnu: lapack: Mark as tunable.
* gnu/packages/maths.scm (lapack)[properties]: New field.
Change-Id: Iec6383a36f699a573654827a0f7ddaf52790625a
-rw-r--r-- | gnu/packages/maths.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 60203f82a9..f17b69c284 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1117,7 +1117,8 @@ large scale eigenvalue problems.") "LAPACK is a Fortran 90 library for solving the most commonly occurring problems in numerical linear algebra.") (license (license:non-copyleft "file://LICENSE" - "See LICENSE in the distribution.")))) + "See LICENSE in the distribution.")) + (properties '((tunable? . #t))))) (define-public clapack (package |