[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69591] [PATCH 22/31] gnu: Add ideep-pytorch.
From: |
David Elsing |
Subject: |
[bug#69591] [PATCH 22/31] gnu: Add ideep-pytorch. |
Date: |
Wed, 6 Mar 2024 19:40:28 +0000 |
* gnu/packages/machine-learning.scm (ideep-pytorch): New variable.
---
gnu/packages/machine-learning.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 5c21e4ed46..bfad33eadb 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -51,6 +51,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)
@@ -4244,6 +4245,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
--
2.41.0
- [bug#69591] [PATCH 04/31] gnu: Add python-pytest-flakefinder., (continued)
- [bug#69591] [PATCH 04/31] gnu: Add python-pytest-flakefinder., David Elsing, 2024/03/06
- [bug#69591] [PATCH 07/31] gnu: Add python-pytest-rerunfailures-13., David Elsing, 2024/03/06
- [bug#69591] [PATCH 09/31] gnu: Add miniz-for-pytorch., David Elsing, 2024/03/06
- [bug#69591] [PATCH 10/31] gnu: Add libnop., David Elsing, 2024/03/06
- [bug#69591] [PATCH 06/31] gnu: Add python-expecttest., David Elsing, 2024/03/06
- [bug#69591] [PATCH 08/31] gnu: Add miniz., David Elsing, 2024/03/06
- [bug#69591] [PATCH 11/31] gnu: Remove flatbuffers-next-shared., David Elsing, 2024/03/06
- [bug#69591] [PATCH 16/31] gnu: nnpack: Update to commit 70a77f4., David Elsing, 2024/03/06
- [bug#69591] [PATCH 14/31] gnu: cpuinfo: Update to commit aa4b216., David Elsing, 2024/03/06
- [bug#69591] [PATCH 12/31] gnu: python-flatbuffers-next: Update to 23.5.26., David Elsing, 2024/03/06
- [bug#69591] [PATCH 22/31] gnu: Add ideep-pytorch.,
David Elsing <=
- [bug#69591] [PATCH 13/31] gnu: pthreadpool: Update to commit 178e3e0., David Elsing, 2024/03/06
- [bug#69591] [PATCH 23/31] gnu: xnnpack: Update to commit 51a9875., David Elsing, 2024/03/06
- [bug#69591] [PATCH 15/31] gnu: clog: Add "-DUSE_SYSTEM_LIBS=ON" configure flag., David Elsing, 2024/03/06
- [bug#69591] [PATCH 20/31] gnu: Add qnnpack., David Elsing, 2024/03/06
- [bug#69591] [PATCH 17/31] gnu: oneapi-dnnl: Update to 3.3.5., David Elsing, 2024/03/06
- [bug#69591] [PATCH 25/31] gnu: Add qnnpack-pytorch., David Elsing, 2024/03/06
- [bug#69591] [PATCH 19/31] gnu: Add fbgemm., David Elsing, 2024/03/06
- [bug#69591] [PATCH 30/31] gnu: Add qnnpack-pytorch-for-r-torch., David Elsing, 2024/03/06
- [bug#69591] [PATCH 26/31] gnu: python-pytorch: Update to 2.2.1 and unbundle dependencies., David Elsing, 2024/03/06
- [bug#69591] [PATCH 27/31] gnu: python-torchvision: Update to 0.17.1., David Elsing, 2024/03/06