Skip to content

Commit 9d2d9ba

Browse files
authored
perf: preallocate Cache during preparation for ForwardDiff (#741)
* perf: preallocate `Cache` during preparation for ForwardDiff * Comment out PolyesterFD HVP * Zygote ambiguity * Type stability tests * Coverage
1 parent ff95f72 commit 9d2d9ba

File tree

10 files changed

+348
-251
lines changed

10 files changed

+348
-251
lines changed

DifferentiationInterface/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DifferentiationInterface"
22
uuid = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
33
authors = ["Guillaume Dalle", "Adrian Hill"]
4-
version = "0.6.45"
4+
version = "0.6.46"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

DifferentiationInterface/ext/DifferentiationInterfaceForwardDiffExt/DifferentiationInterfaceForwardDiffExt.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ using ForwardDiff:
2424
jacobian,
2525
jacobian!,
2626
partials,
27+
pickchunksize,
2728
value
2829

2930
DI.check_available(::AutoForwardDiff) = true
3031

3132
include("utils.jl")
3233
include("onearg.jl")
3334
include("twoarg.jl")
34-
include("secondorder.jl")
35+
# include("secondorder.jl")
3536
include("differentiate_with.jl")
3637
include("misc.jl")
3738

0 commit comments

Comments
 (0)