* [bug#53922] [PATCH 0/4] Some Julia packages
@ 2022-02-10 17:59 zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
2022-02-16 11:43 ` bug#53922: [PATCH 0/4] Some Julia packages Efraim Flashner
0 siblings, 2 replies; 6+ messages in thread
From: zimoun @ 2022-02-10 17:59 UTC (permalink / raw)
To: 53922; +Cc: zimoun, efraim
Hi,
Some dependencies for Flux.jl, the machine learning framework. I am currently
blocked by another dependencies:
https://github.com/JuliaBinaryWrappers/LLVMExtra_jll.jl which depends on
https://github.com/maleadt/LLVM.jl. Well, another story. :-)
Cheers,
simon
zimoun (4):
gnu: Add julia-juno.
gnu: Add julia-bfloat16s.
gnu: Add julia-cenum.
gnu: Add julia-gpuarrays.
gnu/packages/julia-xyz.scm | 101 +++++++++++++++++++++++++++++++++++++
1 file changed, 101 insertions(+)
base-commit: f97fe92b570b01ed1b03abd4f3ec89bf20ebc9db
--
2.34.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#53922] [PATCH 1/4] gnu: Add julia-juno.
2022-02-10 17:59 [bug#53922] [PATCH 0/4] Some Julia packages zimoun
@ 2022-02-10 18:02 ` zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 2/4] gnu: Add julia-bfloat16s zimoun
` (2 more replies)
2022-02-16 11:43 ` bug#53922: [PATCH 0/4] Some Julia packages Efraim Flashner
1 sibling, 3 replies; 6+ messages in thread
From: zimoun @ 2022-02-10 18:02 UTC (permalink / raw)
To: 53922; +Cc: zimoun
* gnu/packages/julia-xyz.scm (julia-juno): New variable.
---
gnu/packages/julia-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index e30cf39dc9..20f37ea8dd 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -3044,6 +3044,34 @@ (define-public julia-json3
focus on speed and slick struct mapping.")
(license license:expat)))
+(define-public julia-juno
+ (package
+ (name "julia-juno")
+ (version "0.8.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JunoLab/Juno.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "02ryj5blnrmck3jisrpwn1x563i7rsg65d7zms52njsvv499gygk"))))
+ (build-system julia-build-system)
+ (inputs
+ (list julia-media))
+ (home-page "https://github.com/JunoLab/Juno.jl")
+ (synopsis "Integrated Development Environment (IDE) for Julia")
+ (description "This package provides tools to help you develop code. Juno
+is built on the Atom text editor. Juno consists of both Julia and Atom
+packages in order to add Julia-specific enhancements, such as syntax
+highlighting, a plot pane, integration with Julia's debugger, a console for
+running code, and much more.
+
+Consider that the package is “maintenance-only mode” and only receives bug
+fixes. The Julia IDE effort is pointed to extension for VSCode.")
+ (license license:expat)))
+
(define-public julia-latexstrings
(package
(name "julia-latexstrings")
--
2.34.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#53922] [PATCH 2/4] gnu: Add julia-bfloat16s.
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
@ 2022-02-10 18:02 ` zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 3/4] gnu: Add julia-cenum zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 4/4] gnu: Add julia-gpuarrays zimoun
2 siblings, 0 replies; 6+ messages in thread
From: zimoun @ 2022-02-10 18:02 UTC (permalink / raw)
To: 53922; +Cc: zimoun
* gnu/packages/julia-xyz.scm (julia-bfloat16s): New variable.
---
gnu/packages/julia-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 20f37ea8dd..6d66da1cb3 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -361,6 +361,34 @@ (define-public julia-benchmarktools
benchmarks as well as comparing benchmark results.")
(license license:expat)))
+(define-public julia-bfloat16s
+ ;; Not tagged upstream
+ (let ((commit "ef6051e4308ed0c02f10168b99d226237e0ae33c")
+ (version "0.2.0"))
+ (package
+ (name "julia-bfloat16s")
+ (version version)
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaMath/BFloat16s.jl")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "16sr578k4i47lhziri47nvspdrsni2wc1qjhs6hzffh9si6a7jfq"))))
+ (build-system julia-build-system)
+ (home-page "https://github.com/JuliaMath/BFloat16s.jl")
+ (synopsis "Define BFloat16 data type")
+ (description "This package defines the @code{BFloat16} data type. The
+only currently available hardware implementation of this datatype are Google's
+Cloud TPUs. As such, this package is suitable to evaluate whether using TPUs
+would cause precision problems for any particular algorithm, even without
+access to TPU hardware. Note that this package is designed for functionality,
+not performance, so this package should be used for precision experiments
+only, not performance experiments.")
+ (license license:expat))))
+
(define-public julia-bioalignments
(package
(name "julia-bioalignments")
--
2.34.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#53922] [PATCH 3/4] gnu: Add julia-cenum.
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 2/4] gnu: Add julia-bfloat16s zimoun
@ 2022-02-10 18:02 ` zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 4/4] gnu: Add julia-gpuarrays zimoun
2 siblings, 0 replies; 6+ messages in thread
From: zimoun @ 2022-02-10 18:02 UTC (permalink / raw)
To: 53922; +Cc: zimoun
* gnu/packages/julia-xyz.scm (julia-cenum): New variable.
---
gnu/packages/julia-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 6d66da1cb3..6cca58a936 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -692,6 +692,25 @@ (define-public julia-categoricalarrays
(ordinal variables), optionally with missing values.")
(license license:expat)))
+(define-public julia-cenum
+ (package
+ (name "julia-cenum")
+ (version "0.4.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaInterop/CEnum.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0h079mggvv420bw87j8s3hsgk7vavjgm4j1cvk0pnzrrh8ib1381"))))
+ (build-system julia-build-system)
+ (home-page "https://github.com/JuliaInterop/CEnum.jl")
+ (synopsis "C-compatible enum for Julia")
+ (description "This package provides a C-compatible enum for Julia.")
+ (license license:expat)))
+
(define-public julia-chainrules
(package
(name "julia-chainrules")
--
2.34.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#53922] [PATCH 4/4] gnu: Add julia-gpuarrays.
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 2/4] gnu: Add julia-bfloat16s zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 3/4] gnu: Add julia-cenum zimoun
@ 2022-02-10 18:02 ` zimoun
2 siblings, 0 replies; 6+ messages in thread
From: zimoun @ 2022-02-10 18:02 UTC (permalink / raw)
To: 53922; +Cc: zimoun
* gnu/packages/julia-xyz.scm (julia-gpuarrays): New variable.
---
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 6cca58a936..bc3601b4f1 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2215,6 +2215,32 @@ (define-public julia-geometrybasics
- 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")
--
2.34.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#53922: [PATCH 0/4] Some Julia packages
2022-02-10 17:59 [bug#53922] [PATCH 0/4] Some Julia packages zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
@ 2022-02-16 11:43 ` Efraim Flashner
1 sibling, 0 replies; 6+ messages in thread
From: Efraim Flashner @ 2022-02-16 11:43 UTC (permalink / raw)
To: zimoun; +Cc: 53922-done
[-- Attachment #1: Type: text/plain, Size: 239 bytes --]
Packages pushed. Thanks!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-02-16 11:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-10 17:59 [bug#53922] [PATCH 0/4] Some Julia packages zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 1/4] gnu: Add julia-juno zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 2/4] gnu: Add julia-bfloat16s zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 3/4] gnu: Add julia-cenum zimoun
2022-02-10 18:02 ` [bug#53922] [PATCH 4/4] gnu: Add julia-gpuarrays zimoun
2022-02-16 11:43 ` bug#53922: [PATCH 0/4] Some Julia packages Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.