[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47350] [PATCH v2 28/30] gnu: Add julia-forwarddiff.
From: |
zimoun |
Subject: |
[bug#47350] [PATCH v2 28/30] gnu: Add julia-forwarddiff. |
Date: |
Thu, 25 Mar 2021 02:05:14 +0100 |
* gnu/packages/julia-xyz.scm (julia-forwarddiff): New variable.
---
gnu/packages/julia-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index b526306984..9a414fc739 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -592,6 +592,38 @@ scaled by a constant factor. Consequently, they have a
fixed number of
digits (bits) after the decimal (radix) point.")
(license license:expat)))
+(define-public julia-forwarddiff
+ (package
+ (name "julia-forwarddiff")
+ (version "0.10.17")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaDiff/ForwardDiff.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "17xaz4v0zr46p7w873w1fwf31phdnhr0vbdym9yr4flmpzi528jw"))))
+ (build-system julia-build-system)
+ (inputs ;required for tests
+ `(("julia-calculus" ,julia-calculus)
+ ("julia-difftests" ,julia-difftests)))
+ (propagated-inputs
+ `(("julia-commonsubexpressions" ,julia-commonsubexpressions)
+ ("julia-diffresults" ,julia-diffresults)
+ ("julia-diffrules" ,julia-diffrules)
+ ("julia-nanmath" ,julia-nanmath)
+ ("julia-specialfunctions" ,julia-specialfunctions)
+ ("julia-staticarrays" ,julia-staticarrays)))
+ (home-page "https://github.com/JuliaDiff/ForwardDiff.jl")
+ (synopsis "Methods to take multidimensional derivatives")
+ (description "This package implements methods to take derivatives,
+gradients, Jacobians, Hessians, and higher-order derivatives of native Julia
+functions (or any callable object, really) using forward mode automatic
+differentiation (AD).")
+ (license license:expat)))
+
(define-public julia-http
(package
(name "julia-http")
--
2.28.0
- [bug#47350] [PATCH v2 17/30] gnu: Add julia-chainrulestestutils., (continued)
- [bug#47350] [PATCH v2 17/30] gnu: Add julia-chainrulestestutils., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 24/30] gnu: Add julia-openspecfun-jll., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 27/30] gnu: Add julia-chainrules., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 19/30] gnu: Add julia-commonsubexpressions., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 21/30] gnu: Add julia-diffresults., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 23/30] gnu: Add julia-compilersupportlibraries-jll., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 26/30] gnu: Add julia-diffrules., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 18/30] gnu: Add julia-fillarrays., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 22/30] gnu: Add julia-difftests., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 25/30] gnu: Add julia-specialfunctions., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 28/30] gnu: Add julia-forwarddiff.,
zimoun <=
- [bug#47350] [PATCH v2 29/30] gnu: Add julia-zygoterules., zimoun, 2021/03/24
- [bug#47350] [PATCH v2 30/30] gnu: Add julia-zygote., zimoun, 2021/03/24