summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAyan Das <bvits@riseup.net>2025-06-08 20:52:37 +0530
committerLudovic Courtès <ludo@gnu.org>2025-06-13 12:22:19 +0200
commit95ca1a54493279a146ace2410d78062fa4e091de (patch)
tree64790d11e8b8c5ef5ecc7bbf4f6410788b4fc641 /gnu
parentb5d7f7041ea67d57151a5edbd9eacf9d1a7b3af0 (diff)
gnu: xnnpack: Update to 0.0-4.51a0103.
* gnu/packages/machine-learning.scm (xnnpack): Update to 0.0-4.51a0103. [source]: Remove deprecated -a flag from update-microkernels.py invocation. [snippet]: Adjust directory list for autogenerated file removal. Signed-off-by: Ayan Das <bvits@riseup.net> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/machine-learning.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index a9876bad4b8..bb55ec67f49 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4513,8 +4513,8 @@ on quantized 8-bit tensors.")
(define-public xnnpack
;; There's currently no tag on this repo.
(let ((version "0.0")
- (commit "08f1489fc815e8f121d4d2676c4863d2b51bfe73")
- (revision "3"))
+ (commit "51a0103656eff6fc9bfd39a4597923c4b542c883")
+ (revision "4"))
(package
(name "xnnpack")
(version (git-version version revision commit))
@@ -4526,7 +4526,7 @@ on quantized 8-bit tensors.")
(file-name (git-file-name name version))
(sha256
(base32
- "00jjhz0nfggbdnqqvcznba03pcyy7gssd24yhhzjhincnz9qh8jr"))
+ "0j4smj8yaxw6r14caqn0dgb8j8mnsq34zp8ixxn11zmgbab306ly"))
(modules '((guix build utils)
(ice-9 ftw)
(ice-9 textual-ports)
@@ -4548,7 +4548,7 @@ on quantized 8-bit tensors.")
(delete-file path))))
(scandir dir (negate (cut member <> '("." ".." "simd"))))))
(cons*
- "test" "bench" "eval" "models" "src/enums" "src/xnnpack"
+ "test" "bench/models" "src/enums" "src/xnnpack"
"gen" "cmake/gen"
(filter
identity
@@ -4625,7 +4625,7 @@ on quantized 8-bit tensors.")
;; These need to run after the above scripts
(display "Remaining files\n")
(invoke "python3" "tools/update-microkernels.py")
- (invoke "python3" "tools/update-microkernels.py" "-a")
+ ;; The -a flag is no longer supported in newer versions
(invoke "python3" "tools/generate-lut-norm-test.py"
"--spec" "test/u8-lut32norm.yaml"
"--output" "test/u8-lut32norm.cc")