guix-commits
[Top][All Lists]
Advanced

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

17/26: gnu: Add julia-tensorcore.


From: guix-commits
Subject: 17/26: gnu: Add julia-tensorcore.
Date: Mon, 31 May 2021 05:56:23 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 6a2d36c734a5c5ab7e1826ce9372f680c0fe772d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 12:07:54 2021 +0300

    gnu: Add julia-tensorcore.
    
    * gnu/packages/julia-xyz.scm (julia-tensorcore): New variable.
---
 gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 33f597c..c802c2b 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2023,6 +2023,29 @@ participate in the @code{TableTraits.jl} ecosystem.")
     (description "TableTraits defines a generic interface for tabular data.")
     (license license:expat)))
 
+(define-public julia-tensorcore
+  (package
+    (name "julia-tensorcore")
+    (version "0.1.1")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaMath/TensorCore.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "1sy3in4a1rl3l2vk0cm9mzg2nkva7syhr7i35si0kbzhkdwpbqjy"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/JuliaMath/TensorCore.jl";)
+    (synopsis "Tensor-algebra definitions")
+    (description "This package is intended as a lightweight foundation for
+tensor operations across the Julia ecosystem.  Currently it exports three
+operations: @acronym{hadamard, elementwise multiplication}, @acronym{tensor,
+product preserves all dimensions}, and @acronym{boxdot, contracts neighboring
+dimensions}.")
+    (license license:expat)))
+
 (define-public julia-unpack
   (package
     (name "julia-unpack")



reply via email to

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