guix-commits
[Top][All Lists]
Advanced

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

11/26: gnu: Add julia-arraylayouts.


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

efraim pushed a commit to branch master
in repository guix.

commit 6dd2634da42ae61120015e98879d4f7bc8a4b7bb
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 11:18:45 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 9d43ffb..bb8854a 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -115,6 +115,30 @@ be GPU compatible without throwing away the wrapper.")
 provides functions to run a few automatable checks for Julia packages.")
     (license license:expat)))
 
+(define-public julia-arraylayouts
+  (package
+    (name "julia-arraylayouts")
+    (version "0.7.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaMatrices/ArrayLayouts.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "01725v4jp8h8zwn85splw907r206h1hnp205pchmzjin7h4659xz"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-fillarrays" ,julia-fillarrays)))
+    (home-page "https://github.com/JuliaMatrices/ArrayLayouts.jl";)
+    (synopsis "Array layouts and general fast linear algebra")
+    (description "This package implements a trait-based framework for 
describing
+array layouts such as column major, row major, etc. that can be dispatched to
+appropriate BLAS or optimised Julia linear algebra routines.  This supports a
+much wider class of matrix types than Julia's in-built @code{StridedArray}.")
+    (license license:expat)))
+
 (define-public julia-benchmarktools
   (package
     (name "julia-benchmarktools")



reply via email to

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