[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/25: gnu: Add rust-matrixmultiply-0.3.
From: |
guix-commits |
Subject: |
18/25: gnu: Add rust-matrixmultiply-0.3. |
Date: |
Tue, 27 Jul 2021 10:41:47 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 355ffee48501d68cb88a45984b742e4be879c353
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Jul 26 11:30:31 2021 +0200
gnu: Add rust-matrixmultiply-0.3.
* gnu/packages/crates-io.scm (rust-matrixmultiply-0.3): New variable.
(rust-matrixmultiply-0.2): Inherit from above.
---
gnu/packages/crates-io.scm | 42 +++++++++++++++++++++++++++++++-----------
1 file changed, 31 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index affb747..74af882 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25718,8 +25718,38 @@ grammars. It provides the subset of the regex crate
that only deals with
matching, not parsing substrings.")
(license license:expat)))
+(define-public rust-matrixmultiply-0.3
+ (package
+ (name "rust-matrixmultiply")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "matrixmultiply" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0hdpsvw28in1m9c5h8a7abzxv70rq8l5hg5h8k6sxpyrfsvib2js"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-num-cpus" ,rust-num-cpus-1)
+ ("rust-once-cell" ,rust-once-cell-1)
+ ("rust-rawpointer" ,rust-rawpointer-0.2)
+ ("rust-thread-tree" ,rust-thread-tree-0.3))))
+ (home-page "https://github.com/bluss/matrixmultiply/")
+ (synopsis "General matrix multiplication for f32 and f64 matrices")
+ (description "General matrix multiplication for f32 and f64 matrices.
+Operates on matrices with general layout (they can use arbitrary row and column
+stride). Detects and uses AVX or SSE2 on x86 platforms transparently for
higher
+performance. Uses a microkernel strategy, so that the implementation is easy
to
+parallelize and optimize.")
+ (license (list license:asl2.0
+ license:expat))))
+
(define-public rust-matrixmultiply-0.2
(package
+ (inherit rust-matrixmultiply-0.3)
(name "rust-matrixmultiply")
(version "0.2.3")
(source
@@ -25730,22 +25760,12 @@ matching, not parsing substrings.")
(sha256
(base32
"13s7nfd3dfcsrixld2lk8c563ih5xzczl2w36hprfc016rkfrxyl"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-rawpointer" ,rust-rawpointer-0.2))
#:cargo-development-inputs
(("rust-bencher" ,rust-bencher-0.1)
- ("rust-itertools" ,rust-itertools-0.7))))
- (home-page "https://github.com/bluss/matrixmultiply/")
- (synopsis "General matrix multiplication for f32 and f64 matrices")
- (description "General matrix multiplication for f32 and f64 matrices.
-Operates on matrices with general layout (they can use arbitrary row and column
-stride). Detects and uses AVX or SSE2 on x86 platforms transparently for
higher
-performance. Uses a microkernel strategy, so that the implementation is easy
to
-parallelize and optimize.")
- (license (list license:asl2.0
- license:expat))))
+ ("rust-itertools" ,rust-itertools-0.7))))))
(define-public rust-matrixmultiply-0.1
(package
- 09/25: gnu: Add rust-polars-io-0.14., (continued)
- 09/25: gnu: Add rust-polars-io-0.14., guix-commits, 2021/07/27
- 12/25: gnu: Add rust-rstest-0.10., guix-commits, 2021/07/27
- 14/25: gnu: Add rust-tui-0.15., guix-commits, 2021/07/27
- 16/25: gnu: Add rust-shadow-rs-0.6., guix-commits, 2021/07/27
- 20/25: gnu: rust-minus-3: Update to 3.4.0., guix-commits, 2021/07/27
- 22/25: gnu: Add rust-calamine-0.18., guix-commits, 2021/07/27
- 21/25: gnu: rust-indexmap-1: Update to 1.7.0., guix-commits, 2021/07/27
- 23/25: gnu: Add rust-mp4-0.8., guix-commits, 2021/07/27
- 24/25: gnu: nushell: Update to 0.34.0., guix-commits, 2021/07/27
- 15/25: gnu: rust-unicode-segmentation-1: Update to 1.8.0., guix-commits, 2021/07/27
- 18/25: gnu: Add rust-matrixmultiply-0.3.,
guix-commits <=
- 17/25: gnu: Add rust-thread-tree-0.3., guix-commits, 2021/07/27
- 19/25: gnu: Add rust-ndarray-0.15., guix-commits, 2021/07/27
- 25/25: gnu: Remove rust-bat-0.17., guix-commits, 2021/07/27