diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 11:18:45 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:54:47 +0300 |
commit | 6dd2634da42ae61120015e98879d4f7bc8a4b7bb (patch) | |
tree | 0f62ea217c638fb446ccb6106a184b188393aba5 /gnu | |
parent | f7f1efeaa78d157562eda3cfb1d1cd1e2d98153a (diff) | |
download | guix-6dd2634da42ae61120015e98879d4f7bc8a4b7bb.tar.gz guix-6dd2634da42ae61120015e98879d4f7bc8a4b7bb.zip |
gnu: Add julia-arraylayouts.
* gnu/packages/julia-xyz.scm (julia-arraylayouts): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 9d43ffb8af..bb8854acb1 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") |