gnu: Add julia-arraylayouts.

* gnu/packages/julia-xyz.scm (julia-arraylayouts): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 11:18:45 +03:00
parent f7f1efeaa7
commit 6dd2634da4
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -115,6 +115,30 @@ (define-public julia-aqua
provides functions to run a few automatable checks for Julia packages.") provides functions to run a few automatable checks for Julia packages.")
(license license:expat))) (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 (define-public julia-benchmarktools
(package (package
(name "julia-benchmarktools") (name "julia-benchmarktools")