mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: Add julia-zygoterules.
* gnu/packages/julia-xyz.scm (julia-zygoterules): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
57e034d568
commit
568cebc258
1 changed files with 22 additions and 0 deletions
|
@ -1199,3 +1199,25 @@ (define-public julia-unitful
|
||||||
(description "This package supports SI units and also many other unit
|
(description "This package supports SI units and also many other unit
|
||||||
system.")
|
system.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-zygoterules
|
||||||
|
(package
|
||||||
|
(name "julia-zygoterules")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/FluxML/ZygoteRules.jl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "07i2mf6rr5b8i6l82qgwl5arsb5pwyyzyfasgnszhdqllk9501bs"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-macrotools" ,julia-macrotools)))
|
||||||
|
(home-page "https://github.com/FluxML/ZygoteRules.jl")
|
||||||
|
(synopsis "Add minimal custom gradients to Zygote")
|
||||||
|
(description "Minimal package which enables to add custom gradients to
|
||||||
|
Zygote, without depending on Zygote itself.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue