guix-commits
[Top][All Lists]
Advanced

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

15/25: gnu: Add julia-blockbandedmatrices.


From: guix-commits
Subject: 15/25: gnu: Add julia-blockbandedmatrices.
Date: Tue, 8 Jun 2021 10:58:46 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 3069985482448d7615d3fe71deab77267f32a6c1
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jun 8 17:04:44 2021 +0300

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 6896cf2..ccaf8f4 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -223,6 +223,34 @@ extraction and insertion of blocks while 
@code{PseudoBlockArray} supports fast
 access to the full matrix to use in in for example a linear solver.")
     (license license:expat)))
 
+(define-public julia-blockbandedmatrices
+  (package
+    (name "julia-blockbandedmatrices")
+    (version "0.10.6")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/JuliaMatrices/BlockBandedMatrices.jl";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32 "0q9ni4pgdkb00jb42fdzlhx745852xx2666vr96k0c4l0cn5mi0y"))))
+    (build-system julia-build-system)
+    (propagated-inputs
+     `(("julia-arraylayouts" ,julia-arraylayouts)
+       ("julia-bandedmatrices" ,julia-bandedmatrices)
+       ("julia-blockarrays" ,julia-blockarrays)
+       ("julia-fillarrays" ,julia-fillarrays)
+       ("julia-matrixfactorizations" ,julia-matrixfactorizations)))
+    (home-page "https://github.com/JuliaMatrices/BlockBandedMatrices.jl";)
+    (synopsis "Block-banded matrices and banded-block-banded matrices")
+    (description "This package supports representing block-banded and
+banded-block-banded matrices by only storing the entries in the non-zero bands.
+A @code{BlockBandedMatrix} is a subtype of @code{BlockMatrix} of
+@code{BlockArrays.jl} whose layout of non-zero blocks is banded.")
+    (license license:expat)))
+
 (define-public julia-bufferedstreams
   (package
     (name "julia-bufferedstreams")



reply via email to

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