[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add julia-gpuarrays.
From: |
guix-commits |
Subject: |
05/06: gnu: Add julia-gpuarrays. |
Date: |
Wed, 16 Feb 2022 06:43:42 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 5acb9b70bdb0f297d101d48936cbcc8b6533673f
Author: zimoun <zimon.toutoune@gmail.com>
AuthorDate: Thu Feb 10 19:02:03 2022 +0100
gnu: Add julia-gpuarrays.
* gnu/packages/julia-xyz.scm (julia-gpuarrays): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/julia-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 16e25a6c84..9a2c20e94c 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2216,6 +2216,32 @@ finite elements analysis, Geo applications, and general
geometry manipulations
- while offering a Julian API, that still allows performant C-interop.")
(license license:expat)))
+(define-public julia-gpuarrays
+ (package
+ (name "julia-gpuarrays")
+ (version "8.1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaGPU/GPUArrays.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "129q8m94b2xq3vij28pkb7dry3r7qbiqrz72a26ma9kilcr35gk4"))))
+ (build-system julia-build-system)
+ (inputs
+ (list julia-adapt))
+ (home-page "https://github.com/JuliaGPU/GPUArrays.jl")
+ (synopsis "Reusable GPU array functionality for various GPU backends")
+ (description "This package is the counterpart of AbstractArray interface,
+but for GPU array types. It provides functionality and tooling to speed-up
+development of new GPU array types. This package is not intended for end
+users; instead, you should use one of the packages that builds on
+@code{GPUArrays.jl}, such as @code{CUDA.jl}, @code{oneAPI.jl} or
+@code{AMDGPU.jl}.")
+ (license license:expat)))
+
(define-public julia-gr
(package
(name "julia-gr")
- branch master updated (b545d22364 -> d96481c072), guix-commits, 2022/02/16
- 01/06: gnu: qemu: Skip some tests on riscv64-linux., guix-commits, 2022/02/16
- 03/06: gnu: Add julia-bfloat16s., guix-commits, 2022/02/16
- 06/06: gnu: julia-media: Create Project.toml file., guix-commits, 2022/02/16
- 02/06: gnu: Add julia-juno., guix-commits, 2022/02/16
- 04/06: gnu: Add julia-cenum., guix-commits, 2022/02/16
- 05/06: gnu: Add julia-gpuarrays.,
guix-commits <=