[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69591] [PATCH v4 22/32] gnu: Add ideep-pytorch.
From: |
David Elsing |
Subject: |
[bug#69591] [PATCH v4 22/32] gnu: Add ideep-pytorch. |
Date: |
Sat, 23 Mar 2024 22:05:01 +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 5dc0a48b12..2aaa342a66 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -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)
@@ -4243,6 +4244,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 v3 22/32] gnu: Add ideep-pytorch., (continued)
- [bug#69591] [PATCH v3 22/32] gnu: Add ideep-pytorch., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 27/32] gnu: Add python-pytorch-avx., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 30/32] gnu: Add oneapi-dnnl-for-r-torch., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 19/32] gnu: Add fbgemm., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 28/32] gnu: python-torchvision: Update to 0.17.1., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 26/32] gnu: python-pytorch: Update to 2.2.1 and unbundle dependencies., David Elsing, 2024/03/20
- [bug#69591] [PATCH v3 32/32] gnu: python-pytorch-for-r-torch: Adjust to new python-pytorch., David Elsing, 2024/03/20
- [bug#69591] [PATCH v4 00/32] Unbundle and update python-pytorch, David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 20/32] gnu: Add qnnpack., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 21/32] gnu: Add foxi., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 22/32] gnu: Add ideep-pytorch.,
David Elsing <=
- [bug#69591] [PATCH v4 25/32] gnu: Add qnnpack-pytorch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 16/32] gnu: nnpack: Update to commit 70a77f4., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 28/32] gnu: python-torchvision: Update to 0.17.1., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 30/32] gnu: Add oneapi-dnnl-for-r-torch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 27/32] gnu: Add python-pytorch-avx., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 19/32] gnu: Add fbgemm., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 31/32] gnu: Add qnnpack-pytorch-for-r-torch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 24/32] gnu: Remove xnnpack-for-torch2., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 29/32] gnu: Add ideep-pytorch-for-r-torch., David Elsing, 2024/03/23
- [bug#69591] [PATCH v4 02/32] gnu: Add python-typing-extensions-4.10., David Elsing, 2024/03/23