emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#63889: closed ([PATCH] gnu: add ruy)


From: GNU bug Tracking System
Subject: bug#63889: closed ([PATCH] gnu: add ruy)
Date: Fri, 08 Sep 2023 08:49:02 +0000

Your message dated Fri, 08 Sep 2023 10:46:40 +0200
with message-id <87il8l6og1.fsf@elephly.net>
and subject line [PATCH] gnu: add ruy
has caused the debbugs.gnu.org bug report #63889,
regarding [PATCH] gnu: add ruy
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
63889: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=63889
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: add ruy Date: Sun, 4 Jun 2023 01:46:17 -0700
* gnu/packages/maths.scm (ruy): New variable
---
 gnu/packages/maths.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 4e34124469..264797d0c6 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -8501,3 +8501,31 @@ (define-public scilab
 optimization, and modeling, simulation of explicit and implicit dynamical
 systems and symbolic manipulations.")
     (license license:cecill)))                    ;CeCILL v2.1
+
+
+(define-public ruy
+  (let ((commit "caa244343de289f913c505100e6a463d46c174de")
+        (version "0")
+        (revision "1"))
+    (package
+      (name "ruy")
+      (version (git-version version revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/google/ruy";)
+                      (commit commit)
+                      (recursive? #t)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0z9q2czk9im88zp8d9spiyx3y9l86rgqj0q0xxqq7vfg9ncypay2"))))
+      (build-system cmake-build-system)
+      (home-page "https://github.com/google/ruy";)
+      (synopsis "Matrix multiplication library")
+      (description
+       "Ruy is a matrix multiplication library.  Its focus is to cover the 
matrix
+multiplication needs of neural network inference engines.  Its initial user has
+been TensorFlow Lite, where it is used by default on the ARM CPU 
architecture.")
+      (license license:asl2.0))))
+

base-commit: b3492964c2573993b65c20f6e7d16c29cfd6f4f5
-- 
2.40.1




--- End Message ---
--- Begin Message --- Subject: [PATCH] gnu: add ruy Date: Fri, 08 Sep 2023 10:46:40 +0200 User-agent: mu4e 1.10.5; emacs 28.2
Applied with minor changes:

- removed recursive git fetch
- changed formatting of arguments
- reflowed paragraph in description
- moved googletest to native-inputs
- corrected commit message
- fixed typos in comments

Thanks!

-- 
Ricardo


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]