-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backend-specific utilities (derivative, multiderivative, gradient, jacobian) #24
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #24 +/- ##
==========================================
- Coverage 92.48% 89.96% -2.52%
==========================================
Files 14 19 +5
Lines 173 319 +146
==========================================
+ Hits 160 287 +127
- Misses 13 32 +19 ☔ View full report in Codecov by Sentry. |
Would be nice if we had benchmarks before blindly merging this. |
Adding a type parameter to all backends sounds good. Maybe this could also be dealt with through the |
Benchmark resultJudge resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsA ratio greater than
Benchmark Group ListHere's a list of all the benchmark groups executed by this job: Julia versioninfoTarget
Baseline
Target resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Baseline resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Runtime information
|
Benchmark resultJudge resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsA ratio greater than
Benchmark Group ListHere's a list of all the benchmark groups executed by this job: Julia versioninfoTarget
Baseline
Target resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Baseline resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Runtime information
|
Benchmark resultJudge resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsA ratio greater than
Benchmark Group ListHere's a list of all the benchmark groups executed by this job: Julia versioninfoTarget
Baseline
Target resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Baseline resultBenchmark Report for /home/runner/work/DifferentiationInterface.jl/DifferentiationInterface.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Runtime information
|
Doc changes
Structural changes
custom
type parameter toAbstractBackend
controling whether custom utilities are used instead of our fallbacks (that callpushforward
andpullback
). Implement convenience constructors with the defaultcustom = true
handles_input_type
,handles_output_type
,autodiff_mode
andis_custom
Backend-specific changes
FiniteDiffBackend
typeZygoteBackend()
shortcut with nicer printingBenchmark changes