[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/10: gnu: Add spectra.
From: |
guix-commits |
Subject: |
06/10: gnu: Add spectra. |
Date: |
Sat, 30 Sep 2023 10:11:25 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit 65bcdd807d8f94122b86a86152678ddf85ee2414
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sun Jul 30 11:18:42 2023 -0300
gnu: Add spectra.
* gnu/packages/algebra.scm (spectra): New variable.
---
gnu/packages/algebra.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index b1ab755144..c061184aee 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -1366,6 +1366,40 @@ objects.")
;; safe side, we drop them for now.
(license license:gpl2+)))
+(define-public spectra
+ (package
+ (name "spectra")
+ (version "1.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/yixuan/spectra")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1krgx7763g0phrp879rgq10dvfyxrdx9rzwxiyzn6qi3iqr6d8hx"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-DBUILD_TESTS=ON")
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ ;; This test failed.
+ (invoke "ctest" "--exclude-regex"
+ "GenEigsRealShift")))))))
+ (inputs (list eigen))
+ (home-page "https://spectralib.org/")
+ (synopsis "C++ library for large scale eigenvalue problems")
+ (description "Spectra stands for Sparse Eigenvalue Computation Toolkit as
+a Redesigned ARPACK. It is a C++ library for large scale eigenvalue problems,
+built on top of Eigen. It is implemented as a header-only C++ library and can
+be easily embedded in C++ projects that require calculating eigenvalues of
+large matrices.")
+ (license license:mpl2.0)))
+
(define-public gappa
(package
(name "gappa")
- branch master updated (ee5de9cdf2 -> 9f41aa021f), guix-commits, 2023/09/30
- 02/10: gnu: Add primesieve., guix-commits, 2023/09/30
- 03/10: gnu: Add cminpack., guix-commits, 2023/09/30
- 07/10: gnu: ceres: Propagate eigen and gflags., guix-commits, 2023/09/30
- 08/10: gnu: Add python-numpoly., guix-commits, 2023/09/30
- 09/10: gnu: Add python-chaospy., guix-commits, 2023/09/30
- 10/10: gnu: Add python-openturns., guix-commits, 2023/09/30
- 01/10: gnu: Add hmat., guix-commits, 2023/09/30
- 05/10: gnu: Add pagmo., guix-commits, 2023/09/30
- 04/10: gnu: Add bonmin., guix-commits, 2023/09/30
- 06/10: gnu: Add spectra.,
guix-commits <=