mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add eigen-for-onnxruntime.
* gnu/packages/algebra.scm (eigen-for-onnxruntime): New variable.
This commit is contained in:
parent
4d632082cf
commit
209a5c4c96
1 changed files with 22 additions and 0 deletions
|
@ -1238,6 +1238,28 @@ features, and more.")
|
||||||
|
|
||||||
(synopsis "Micro-benchmarks of the Eigen linear algebra library")))
|
(synopsis "Micro-benchmarks of the Eigen linear algebra library")))
|
||||||
|
|
||||||
|
(define-public eigen-for-onnxruntime
|
||||||
|
(let ((commit "1d8b82b0740839c0de7f1242a3585e3390ff5f33")
|
||||||
|
(revision "0"))
|
||||||
|
(package/inherit eigen
|
||||||
|
(name "eigen")
|
||||||
|
(version (git-version "3.4.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/libeigen/eigen")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0pxh81jjnz97ndwaanla6zch1128bfdrf2kgqxgxyjvqbdg1vqwi"))))
|
||||||
|
;; XXX: Some tests fail, but onnxruntime will move on to the next
|
||||||
|
;; release soon enough.
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments eigen)
|
||||||
|
((#:tests? tests? #t)
|
||||||
|
#f))))))
|
||||||
|
|
||||||
(define-public eigen-for-tensorflow
|
(define-public eigen-for-tensorflow
|
||||||
(let ((changeset "fd6845384b86")
|
(let ((changeset "fd6845384b86")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue