-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathDifferentiationInterfaceFiniteDifferencesExt.jl
More file actions
186 lines (163 loc) · 4.18 KB
/
DifferentiationInterfaceFiniteDifferencesExt.jl
File metadata and controls
186 lines (163 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
module DifferentiationInterfaceFiniteDifferencesExt
using ADTypes: AutoFiniteDifferences
import DifferentiationInterface as DI
using FiniteDifferences: FiniteDifferences, grad, jacobian, jvp, j′vp
using LinearAlgebra: dot
DI.check_available(::AutoFiniteDifferences) = true
DI.inplace_support(::AutoFiniteDifferences) = DI.InPlaceNotSupported()
DI.inner_preparation_behavior(::AutoFiniteDifferences) = DI.PrepareInnerSimple()
## Pushforward
function DI.prepare_pushforward(
f, ::AutoFiniteDifferences, x, tx::NTuple, contexts::Vararg{DI.Context,C}
) where {C}
return DI.NoPushforwardPrep()
end
function DI.pushforward(
f,
::DI.NoPushforwardPrep,
backend::AutoFiniteDifferences,
x,
tx::NTuple,
contexts::Vararg{DI.Context,C},
) where {C}
fc = DI.with_contexts(f, contexts...)
ty = map(tx) do dx
jvp(backend.fdm, fc, (x, dx))
end
return ty
end
function DI.value_and_pushforward(
f,
prep::DI.NoPushforwardPrep,
backend::AutoFiniteDifferences,
x,
tx::NTuple,
contexts::Vararg{DI.Context,C},
) where {C}
return f(x, map(DI.unwrap, contexts)...),
DI.pushforward(f, prep, backend, x, tx, contexts...)
end
## Pullback
function DI.prepare_pullback(
f, ::AutoFiniteDifferences, x, ty::NTuple, contexts::Vararg{DI.Context,C}
) where {C}
return DI.NoPullbackPrep()
end
function DI.pullback(
f,
::DI.NoPullbackPrep,
backend::AutoFiniteDifferences,
x,
ty::NTuple,
contexts::Vararg{DI.Context,C},
) where {C}
fc = DI.with_contexts(f, contexts...)
tx = map(ty) do dy
only(j′vp(backend.fdm, fc, dy, x))
end
return tx
end
function DI.value_and_pullback(
f,
prep::DI.NoPullbackPrep,
backend::AutoFiniteDifferences,
x,
ty::NTuple,
contexts::Vararg{DI.Context,C},
) where {C}
return f(x, map(DI.unwrap, contexts)...),
DI.pullback(f, prep, backend, x, ty, contexts...)
end
## Gradient
function DI.prepare_gradient(
f, ::AutoFiniteDifferences, x, contexts::Vararg{DI.Context,C}
) where {C}
return DI.NoGradientPrep()
end
function DI.gradient(
f,
::DI.NoGradientPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
fc = DI.with_contexts(f, contexts...)
return only(grad(backend.fdm, fc, x))
end
function DI.value_and_gradient(
f,
prep::DI.NoGradientPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
return f(x, map(DI.unwrap, contexts)...), DI.gradient(f, prep, backend, x, contexts...)
end
function DI.gradient!(
f,
grad,
prep::DI.NoGradientPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
return copyto!(grad, DI.gradient(f, prep, backend, x, contexts...))
end
function DI.value_and_gradient!(
f,
grad,
prep::DI.NoGradientPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
y, new_grad = DI.value_and_gradient(f, prep, backend, x, contexts...)
return y, copyto!(grad, new_grad)
end
## Jacobian
function DI.prepare_jacobian(
f, ::AutoFiniteDifferences, x, contexts::Vararg{DI.Context,C}
) where {C}
return DI.NoJacobianPrep()
end
function DI.jacobian(
f,
::DI.NoJacobianPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
fc = DI.with_contexts(f, contexts...)
return only(jacobian(backend.fdm, fc, x))
end
function DI.value_and_jacobian(
f,
prep::DI.NoJacobianPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
return f(x, map(DI.unwrap, contexts)...), DI.jacobian(f, prep, backend, x, contexts...)
end
function DI.jacobian!(
f,
jac,
prep::DI.NoJacobianPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
return copyto!(jac, DI.jacobian(f, prep, backend, x, contexts...))
end
function DI.value_and_jacobian!(
f,
jac,
prep::DI.NoJacobianPrep,
backend::AutoFiniteDifferences,
x,
contexts::Vararg{DI.Context,C},
) where {C}
y, new_jac = DI.value_and_jacobian(f, prep, backend, x, contexts...)
return y, copyto!(jac, new_jac)
end
end