mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add ideep-pytorch.
* gnu/packages/machine-learning.scm (ideep-pytorch): New variable.
This commit is contained in:
parent
3ef0b4e402
commit
b032109b5c
1 changed files with 26 additions and 0 deletions
|
@ -52,6 +52,7 @@ (define-module (gnu packages machine-learning)
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix svn-download)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system copy)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system ocaml)
|
||||
#:use-module (guix build-system pyproject)
|
||||
|
@ -4264,6 +4265,31 @@ (define-public foxi
|
|||
contains facebook extensions and is used by PyTorch.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public ideep-pytorch
|
||||
(package
|
||||
(name "ideep-pytorch")
|
||||
(version "3.3.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/intel/ideep")
|
||||
(commit (string-append "pytorch-rls-v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0y6r938qryi3bnf15rp0fbilsfimdcgmvsa0ygwrn3zifw6386rb"))))
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:install-plan
|
||||
''(("include" "include"))))
|
||||
(home-page "https://github.com/intel/ideep")
|
||||
(synopsis "Ideep headers for interal use by PyTorch")
|
||||
(description "This library is used internally as header-only library by
|
||||
PyTorch.")
|
||||
(license license:expat)))
|
||||
|
||||
;; Please also update python-torchvision when updating this package.
|
||||
(define-public python-pytorch
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue