gnu: nnpack: Update to commit 70a77f4.
* gnu/packages/machine-learning.scm (nnpack): Update to commit 70a77f4. [supported-systems]: New field.
This commit is contained in:
parent
bec16cc910
commit
e8c3fb3f7e
1 changed files with 8 additions and 13 deletions
|
@ -3994,10 +3994,11 @@ reduction technique that can be used for visualization similarly to t-SNE, but
|
||||||
also for general non-linear dimension reduction.")
|
also for general non-linear dimension reduction.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
;; Requires AVX2 on x86_64-linux.
|
||||||
(define-public nnpack
|
(define-public nnpack
|
||||||
(let ((version "0.0")
|
(let ((version "0.0")
|
||||||
(commit "c07e3a0400713d546e0dea2d5466dd22ea389c73")
|
(commit "70a77f485e8b934224f3a79efd8edcd84cd377b8")
|
||||||
(revision "1"))
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "nnpack")
|
(name "nnpack")
|
||||||
(version (git-version version revision commit))
|
(version (git-version version revision commit))
|
||||||
|
@ -4008,19 +4009,11 @@ also for general non-linear dimension reduction.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0s0kk3a35w3yzf0q447p72350sbsh4qhg6vm3y2djbj4xpg7jc8v"))
|
"0c4pw926279s3rlx7mg4l4vhnfy6dh374n6w7zqhcn0bxpym1hv1"))
|
||||||
(patches (search-patches "nnpack-system-libraries.patch"))))
|
(patches (search-patches "nnpack-system-libraries.patch"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
;; XXX: The test suite runs but it's very expensive, and on x86_64 CPUs
|
;; XXX: The test suite runs but it's very expensive. On x86_64-linux, it
|
||||||
;; that lack the right ISA extensions, tests fail with:
|
;; requires AVX2 instructions.
|
||||||
;;
|
|
||||||
;; Expected equality of these values:
|
|
||||||
;; nnp_status_success
|
|
||||||
;; Which is: 0
|
|
||||||
;; status
|
|
||||||
;; Which is: 51
|
|
||||||
;;
|
|
||||||
;; where 51 is 'nnp_status_unsupported_hardware'.
|
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
(synopsis "Acceleration package for neural network computations")
|
(synopsis "Acceleration package for neural network computations")
|
||||||
(description
|
(description
|
||||||
|
@ -4041,6 +4034,8 @@ and Darknet.")
|
||||||
googletest))
|
googletest))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python python-peachpy python-six))
|
(list python python-peachpy python-six))
|
||||||
|
;; Supported for Linux.
|
||||||
|
(supported-systems '("x86_64-linux" "armhf-linux" "aarch64-linux"))
|
||||||
(license license:bsd-2))))
|
(license license:bsd-2))))
|
||||||
|
|
||||||
(define-public xnnpack
|
(define-public xnnpack
|
||||||
|
|
Reference in a new issue