mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 12:49:45 -05:00
gnu: Add julia-mappedarrays.
* gnu/packages/julia-xyz.scm (julia-mappedarrays): New variable.
This commit is contained in:
parent
6a2d36c734
commit
ea03851b01
1 changed files with 30 additions and 0 deletions
|
@ -1158,6 +1158,36 @@ (define-public julia-macrotools
|
||||||
that let you do deep transformations of code.")
|
that let you do deep transformations of code.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-mappedarrays
|
||||||
|
(package
|
||||||
|
(name "julia-mappedarrays")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/JuliaArrays/MappedArrays.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0l5adird8m1cmnsxwhzi5hcr7q9bm1rf7a6018zc7kcn2yxdshy3"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-fixedpointnumbers" ,julia-fixedpointnumbers)))
|
||||||
|
(native-inputs
|
||||||
|
`(("julia-colortypes" ,julia-colortypes)
|
||||||
|
("julia-fixedpointnumbers" ,julia-fixedpointnumbers)
|
||||||
|
("julia-offsetarrays" ,julia-offsetarrays)))
|
||||||
|
(home-page "https://github.com/JuliaArrays/MappedArrays.jl")
|
||||||
|
(synopsis "Lazy in-place transformations of arrays")
|
||||||
|
(description "This package implements \"lazy\" in-place elementwise
|
||||||
|
transformations of arrays for the Julia programming language. Explicitly, it
|
||||||
|
provides a \"view\" M of an array A so that @code{M[i] = f(A[i])} for a
|
||||||
|
specified (but arbitrary) function f, without ever having to compute M
|
||||||
|
explicitly (in the sense of allocating storage for M). The name of the package
|
||||||
|
comes from the fact that @code{M == map(f, A)}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public julia-matrixfactorizations
|
(define-public julia-matrixfactorizations
|
||||||
(package
|
(package
|
||||||
(name "julia-matrixfactorizations")
|
(name "julia-matrixfactorizations")
|
||||||
|
|
Loading…
Reference in a new issue