mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add julia-diffrules.
* gnu/packages/julia-xyz.scm (julia-diffrules): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
3d98a16ab4
commit
33e5152aeb
1 changed files with 25 additions and 0 deletions
|
@ -411,6 +411,31 @@ (define-public julia-diffresults
|
|||
be passed to in-place differentiation methods instead of an output buffer.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-diffrules
|
||||
(package
|
||||
(name "julia-diffrules")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/JuliaDiff/DiffRules.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0cwjvj4gma7924fm3yas0nf0jlnwwx4v7fi79ii3s290lkdldzfl"))))
|
||||
(propagated-inputs
|
||||
`(("julia-nanmath" ,julia-nanmath)
|
||||
("julia-specialfunctions" ,julia-specialfunctions)))
|
||||
(build-system julia-build-system)
|
||||
(home-page "https://github.com/JuliaDiff/DiffRules.jl")
|
||||
(synopsis "Primitive differentiation rules")
|
||||
(description "This package provides primitive differentiation rules that
|
||||
can be composed via various formulations of the chain rule. Using
|
||||
@code{DiffRules}, new differentiation rules can defined, query whether or not
|
||||
a given rule exists, and symbolically apply rules to simple Julia expressions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-difftests
|
||||
(package
|
||||
(name "julia-difftests")
|
||||
|
|
Loading…
Reference in a new issue