|
8 | 8 |
|
9 | 9 | ## Summary of Finite Differencing Backends |
10 | 10 |
|
11 | | - - [`AutoFiniteDiff`](@extref ADTypes): Finite differencing using `FiniteDiff.jl`, not |
12 | | - optimal but always applicable. |
13 | | - - [`AutoFiniteDifferences`](@extref ADTypes): Finite differencing using |
14 | | - `FiniteDifferences.jl`, not optimal but always applicable. |
| 11 | + - [`AutoFiniteDiff`](@extref ADTypes.AutoFiniteDiff): Finite differencing using |
| 12 | + `FiniteDiff.jl`, not optimal but always applicable. |
| 13 | + - [`AutoFiniteDifferences`](@extref ADTypes.AutoFiniteDifferences): Finite differencing |
| 14 | + using `FiniteDifferences.jl`, not optimal but always applicable. |
15 | 15 |
|
16 | 16 | ## Summary of Forward Mode AD Backends |
17 | 17 |
|
18 | | - - [`AutoForwardDiff`](@extref ADTypes): The best choice for dense problems. |
19 | | - - [`AutoPolyesterForwardDiff`](@extref ADTypes): Might be faster than |
20 | | - [`AutoForwardDiff`](@extref ADTypes) for large problems. Requires |
| 18 | + - [`AutoForwardDiff`](@extref ADTypes.AutoForwardDiff): The best choice for dense |
| 19 | + problems. |
| 20 | + - [`AutoPolyesterForwardDiff`](@extref ADTypes.AutoPolyesterForwardDiff): Might be faster |
| 21 | + than [`AutoForwardDiff`](@extref ADTypes.AutoForwardDiff) for large problems. Requires |
21 | 22 | `PolyesterForwardDiff.jl` to be installed and loaded. |
22 | 23 |
|
23 | 24 | ## Summary of Reverse Mode AD Backends |
24 | 25 |
|
25 | | - - [`AutoZygote`](@extref ADTypes): The fastest choice for non-mutating array-based (BLAS) |
26 | | - functions. |
27 | | - - [`AutoEnzyme`](@extref ADTypes): Uses `Enzyme.jl` Reverse Mode and works for both |
28 | | - in-place and out-of-place functions. |
| 26 | + - [`AutoZygote`](@extref ADTypes.AutoZygote): The fastest choice for non-mutating |
| 27 | + array-based (BLAS) functions. |
| 28 | + - [`AutoEnzyme`](@extref ADTypes.AutoEnzyme): Uses `Enzyme.jl` Reverse Mode and works for |
| 29 | + both in-place and out-of-place functions. |
29 | 30 |
|
30 | 31 | !!! tip |
31 | 32 |
|
|
0 commit comments