diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-08-01 10:52:52 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-09-01 22:03:14 +0200 |
| commit | 6a3d58fb0678764173a4e30e9f816cdd46418963 (patch) | |
| tree | 55919f765f22d89858f413339fe3750b78aa0d55 /gnu/packages/maths.scm | |
| parent | 8977d13d1563609831ef7384b2b789bf7ccb168e (diff) | |
gnu: openblas: Update to 0.3.30.
* gnu/packages/maths.scm (openblas): Update to 0.3.30.
(openblas-0.3.29): Remove unused alias.
Change-Id: Ida296e6e8854e29fe82f44399d4b7331e1308c0c
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/maths.scm')
| -rw-r--r-- | gnu/packages/maths.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f9f268c8bec..d50607c9368 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -6033,7 +6033,7 @@ parts of it.") (define-public openblas (package (name "openblas") - (version "0.3.29") + (version "0.3.30") (source (origin (method git-fetch) @@ -6043,7 +6043,7 @@ parts of it.") (file-name (git-file-name name version)) (sha256 (base32 - "1wm00hn0vzb45nqg0q3ka15wjqjzma5lh1x6227di73icqdcbzcz")))) + "08crjjs7avnkk7l226pghhz68mw9ak62xcghc9hdpshbflwzd0vy")))) (build-system gnu-build-system) (arguments (list @@ -6057,10 +6057,11 @@ parts of it.") "MAKE_NB_JOBS=0" ;use jobserver for submakes "NO_STATIC=1" ;avoid a 67 MiB static archive - ;; This is the maximum number of threads OpenBLAS will ever use (that - ;; is, if $OPENBLAS_NUM_THREADS is greater than that, then NUM_THREADS - ;; is used.) If we don't set it, the makefile sets it to the number - ;; of cores of the build machine, which is obviously wrong. + ;; This is the maximum number of threads OpenBLAS will ever use + ;; (that is, if $OPENBLAS_NUM_THREADS is greater than that, then + ;; NUM_THREADS is used.) If we don't set it, the makefile sets + ;; it to the number of cores of the build machine, which is + ;; obviously wrong. "NUM_THREADS=128" ;; DYNAMIC_ARCH is only supported on some architectures. @@ -6101,7 +6102,8 @@ parts of it.") (string-append "-L" (dirname - (search-input-file inputs "/lib/libgfortran.so"))))))))) + (search-input-file inputs + "/lib/libgfortran.so"))))))))) (inputs (list `(,gfortran "lib"))) (native-inputs @@ -6129,8 +6131,6 @@ from the GotoBLAS2-1.13 BSD version.") (synopsis "Optimized BLAS library based on GotoBLAS (ILP64 version)") (license license:bsd-3))) -(define-public openblas-0.3.29 openblas) - (define-public libblastrampoline (package (name "libblastrampoline") |
