me
/
guix
Archived
1
0
Fork 0

gnu: Add julia-tracker.

* gnu/packages/julia-xyz.scm (julia-tracker): New variable.
master
Efraim Flashner 2021-06-08 16:39:34 +03:00
parent 5be9b3fd6b
commit 916c266921
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 31 additions and 0 deletions

View File

@ -2546,6 +2546,37 @@ product preserves all dimensions}, and @acronym{boxdot, contracts neighboring
dimensions}.")
(license license:expat)))
(define-public julia-tracker
(package
(name "julia-tracker")
(version "0.2.12")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/FluxML/Tracker.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1s4mdywbp7nli7z985fqaj1rs4i6d92b1jx3lhg0qhk1s5wc0v8j"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-adapt" ,julia-adapt)
("julia-diffrules" ,julia-diffrules)
("julia-forwarddiff" ,julia-forwarddiff)
("julia-macrotools" ,julia-macrotools)
("julia-nanmath" ,julia-nanmath)
("julia-nnlib" ,julia-nnlib)
("julia-requires" ,julia-requires)
("julia-specialfunctions" ,julia-specialfunctions)))
(native-inputs
`(("julia-pdmats" ,julia-pdmats)))
(home-page "https://github.com/FluxML/Tracker.jl")
(synopsis "Operator overloading reverse-mode automatic differentiator")
(description "@code{Tracker.jl} previously provided @code{Flux.jl} with
automatic differentiation for its machine learning platform.")
(license license:expat)))
(define-public julia-typedtables
(package
(name "julia-typedtables")