diff options
author | zamfofex <zamfofex@twdb.moe> | 2023-04-26 10:17:38 -0300 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-05-11 22:19:08 +0800 |
commit | b718e42c96d6cd48539d9b452a7ab2b8c88df469 (patch) | |
tree | 456e17406a381a70a0c5d29f606931008f7d9169 /gnu | |
parent | af6ed2fc14dfb009cb1e61ba146e11814596e2a6 (diff) | |
download | guix-b718e42c96d6cd48539d9b452a7ab2b8c88df469.tar.gz |
gnu: Add oneDNN.
* gnu/packages/machine-learning.scm (oneapi-dnnl): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/machine-learning.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index fae6d244b0..7cd128443e 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr> +;;; Copyright © 2023 zamfofex <zamfofex@twdb.moe> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4303,3 +4304,23 @@ easily extensible.") Brian 2 simulator.") (license license:cecill))) +(define-public oneapi-dnnl + (package + (name "oneapi-dnnl") + (version "3.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oneapi-src/oneDNN") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jgmb5kl0bf4a2zfn94zlb117672r9lvvkkmwl86ihlyr1mpr3d0")))) + (build-system cmake-build-system) + (home-page "https://github.com/oneapi-src/oneDNN") + (synopsis "Deep Neural Network Library") + (description + "OneAPI Deep Neural Network Library (oneDNN) is a cross-platform +performance library of basic building blocks for deep learning applications.") + (license license:asl2.0))) |