mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 13:36:36 +01:00
gnu: Add julia-manualmemory.
* gnu/packages/julia-xyz.scm (julia-manualmemory): New variable. Change-Id: I8a5b2c1fb9dfa0b83864023ba71a2cb74fee1d8f Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1c821f620a
commit
59646be903
1 changed files with 25 additions and 0 deletions
|
@ -4288,6 +4288,31 @@ (define-public julia-macrotools
|
|||
that let you do deep transformations of code.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-manualmemory
|
||||
(package
|
||||
(name "julia-manualmemory")
|
||||
(version "0.1.8")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaSIMD/ManualMemory.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ajd92q65cffyb9x6mb1x1aprr2afn8p52bfkbmf303dy5ac63lj"))))
|
||||
(build-system julia-build-system)
|
||||
;; Tests have a dependency cycle with VectorizationBase
|
||||
;; VectorizationBase -> LayoutPointers -> ManualMemory -> VectorizationBase
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f))
|
||||
(home-page "https://github.com/JuliaSIMD/ManualMemory.jl")
|
||||
(synopsis "Manual memory management utilities in Julia")
|
||||
(description "This package provides manually managed memory buffers backed
|
||||
by @code{NTuples} in Julia.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-mappedarrays
|
||||
(package
|
||||
(name "julia-mappedarrays")
|
||||
|
|
Loading…
Reference in a new issue