-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptimizers_abstract.jl
More file actions
373 lines (292 loc) · 10.4 KB
/
optimizers_abstract.jl
File metadata and controls
373 lines (292 loc) · 10.4 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
using LinearAlgebra
using LinearMaps
using ReverseDiff
using ForwardDiff
using IterativeSolvers
# Gets all the necessary derivatives
function get_closures(f)
function ∇x_f(x, y)
return ReverseDiff.gradient((x, y) -> f(x, y), (x, y))[1]
end
function ∇y_f(x, y)
return ReverseDiff.gradient((x, y) -> f(x, y), (x, y))[2]
end
function ∇y∇y_f(v, x, y)
function ∇y_f(y, x)
return ReverseDiff.gradient((y, x) -> f(x, y), (y, x))[1]
end
return ForwardDiff.derivative(h -> ∇y_f(y + h * v, x ), zero(eltype(v)))
end
function ∇y∇x_f(v, x, y)
function ∇y_f(x, y)
return ReverseDiff.gradient((x, y) -> f(x, y), (x, y))[2]
end
return ForwardDiff.derivative(h -> ∇y_f(x + h * v, y ), zero(eltype(v)))
end
function ∇x∇x_f(v, x, y)
function ∇x_f(x, y)
return ReverseDiff.gradient((x, y) -> f(x, y), (x, y))[1]
end
return ForwardDiff.derivative(h -> ∇x_f(x + h * v, y ), zero(eltype(v)))
end
function ∇x∇y_f(v, x, y)
function ∇x_f(y, x)
return ReverseDiff.gradient((y, x) -> f(x, y), (y, x))[2]
end
return ForwardDiff.derivative(h -> ∇x_f(y + h * v, x ), zero(eltype(v)))
end
return ∇x_f, ∇y_f, ∇x∇x_f, ∇x∇y_f, ∇y∇y_f, ∇y∇x_f
end
# Gets all the necessary derivatives just using forward mode
# autodiff. Slower for large problems, only used for debugging
function get_closures_forward(f)
function ∇x_f(x, y)
return ForwardDiff.gradient(x -> f(x, y), x)
end
function ∇y_f(x, y)
return ForwardDiff.gradient(y -> f(x, y), y)
end
function ∇y∇y_f(v, x, y)
function ∇y_f(y)
return ForwardDiff.gradient(y -> f(x, y), y)
end
return ForwardDiff.derivative(h -> ∇y_f(y + h * v), zero(eltype(v)))
end
function ∇y∇x_f(v, x, y)
function ∇y_f(x)
return ForwardDiff.gradient(y -> f(x, y), y)
end
return ForwardDiff.derivative(h -> ∇y_f(x + h * v), zero(eltype(v)))
end
function ∇x∇x_f(v, x, y)
function ∇x_f(x)
return ForwardDiff.gradient(x -> f(x, y), x)
end
return ForwardDiff.derivative(h -> ∇x_f(x + h * v), zero(eltype(v)))
end
function ∇x∇y_f(v, x, y)
function ∇x_f(y)
return ForwardDiff.gradient(x -> f(x, y), x)
end
return ForwardDiff.derivative(h -> ∇x_f(y + h * v), zero(eltype(v)))
end
return ∇x_f, ∇y_f, ∇x∇x_f, ∇x∇y_f, ∇y∇y_f, ∇y∇x_f
end
function GDA!(x, y, ∇x_f, ∇y_g, η)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
x .-= η .* ∇x_f
y .-= η .* ∇y_g
return 2
end
function GDA!(x, y, ∇x_f, ∇y_g, ηx, ηy)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
x .-= ηx * ∇x_f
y .-= ηy * ∇y_g
return 2
end
function OGDA!(x, y, Δx, Δy, ∇x_f, ∇y_g, η )
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
x .-= 2 * η * ∇x_f - η .* Δx
y .-= 2 * η * ∇y_g - η .* Δy
Δx .= ∇x_f
Δy .= ∇y_g
return 2
end
function OGDA!(x, y, Δx, Δy, ∇x_f, ∇y_g, ηx, ηy )
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
x .-= 2 * ηx * ∇x_f - ηx * Δx
y .-= 2 * ηy * ∇y_g - ηy * Δy
Δx .= ∇x_f
Δy .= ∇y_g
return 2
end
#Only coincides with SGA in the case where f = -g
function SGA!(x, y, ∇x_f, ∇y_g, ∇x∇y_f, ∇y∇x_g, η, γ)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
Δx = ∇x_f - γ * ∇x∇y_f(∇y_g, x, y)
Δy = ∇y_g - γ * ∇y∇x_g(∇x_f, x, y)
x .-= η * Δx
y .-= η * Δy
return 4
end
function SGA!(x, y, ∇x_f, ∇y_g, ∇x∇y_f, ∇y∇x_g, ηx, ηy, γ)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
Δx = ∇x_f - γ * ∇x∇y_f(∇y_g, x, y)
Δy = ∇y_g - γ * ∇y∇x_g(∇x_f, x, y)
x .-= ηx * Δx
y .-= ηy * Δy
return 4
end
function conOpt!(x, y, ∇x_f, ∇y_g, ∇x∇x_f, ∇x∇y_f, ∇y∇y_g, ∇y∇x_g, η, γ)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
Δx = ∇x_f - γ * ∇x∇y_f(∇y_g, x, y) + γ * ∇x∇x_f(∇x_f, x, y)
Δy = ∇y_g - γ * ∇y∇x_g(∇x_f, x, y) + γ * ∇y∇y_g(∇y_g, x, y)
x .-= η * Δx
y .-= η * Δy
return 6
end
function conOpt!(x, y, ∇x_f, ∇y_g, ∇x∇x_f, ∇x∇y_f, ∇y∇y_g, ∇y∇x_g, ηx, ηy, γ)
∇x_f = ∇x_f(x,y)
∇y_g = ∇y_g(x,y)
Δx = ∇x_f - γ * ∇x∇y_f(∇y_g, x, y) + γ * ∇x∇x_f(∇x_f, x, y)
Δy = ∇y_g - γ * ∇y∇x_g(∇x_f, x, y) + γ * ∇y∇y_g(∇y_g, x, y)
x .-= ηx * Δx
y .-= ηy * Δy
return 6
end
function LCGDA!(x, y, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, η)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
Δx = (∇x_f - η * ∇x∇y_f(∇y_g, x, y))
Δy = (∇y_g - η * ∇y∇x_g(∇x_f, x, y))
x .-= η * Δx
y .-= η * Δy
return 4
end
function CG_CGDA!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, η, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player x
function MVec_x(inp)
yTemp = ∇y∇x_g(inp, x, y)
return inp - η^2 * ∇x∇y_f(yTemp, x, y)
end
M_x = LinearMap{eltype(x)}(MVec_x, size(x,1), size(x,1))
rhs_x = - (∇x_f - η * ∇x∇y_f(∇y_g, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_x = norm(rhs_x) / norm(MVec_x(Δx) - rhs_x)
Δx .= rhs_x
Δx, xhist = cg!(Δx, M_x, rhs_x; tol = tolad_x * ε, log = true)
#Defining the matvec for the solution of the system of player y
function MVec_y(inp)
yTemp = ∇x∇y_f(inp, x, y)
return inp - η^2 * ∇y∇x_g(yTemp, x, y)
end
M_y = LinearMap{eltype(x)}(MVec_y, size(y,1), size(y,1))
rhs_y = - (∇y_g - η * ∇y∇x_g(∇x_f, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_y = norm(rhs_y) / norm(MVec_y(Δy) - rhs_y)
Δy .= rhs_y
Δy, yhist = cg!(Δy, M_y, rhs_y; tol = tolad_y * ε, log = true)
x .+= η * Δx
y .+= η * Δy
return 2 * (xhist.iters + yhist.iters) + 4
end
function CG_CGDA!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, ηx, ηy, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player x
function MVec_x(inp)
yTemp = ηy * ∇y∇x_g(inp, x, y)
return ηx \ inp - ∇x∇y_f(yTemp, x, y)
end
M_x = LinearMap{eltype(x)}(MVec_x, size(x,1), size(x,1))
rhs_x = - (∇x_f - ∇x∇y_f(ηy * ∇y_g, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked in computational complexity
tolad_x = norm(rhs_x) / norm(MVec_x(Δx) - rhs_x)
Δx .= rhs_x
Δx, xhist = cg!(Δx, M_x, rhs_x; tol = tolad_x * ε, log = true)
#Defining the matvec for the solution of the system of player y
function MVec_y(inp)
yTemp = ηx * ∇x∇y_f(inp, x, y)
return ηy \ inp - ∇y∇x_g(yTemp, x, y)
end
M_y = LinearMap{eltype(x)}(MVec_y, size(y,1), size(y,1))
rhs_y = - (∇y_g - ∇y∇x_g(ηx * ∇x_f, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_y = norm(rhs_y) / norm(MVec_y(Δy) - rhs_y)
Δy .= rhs_y
Δy, yhist = cg!(Δy, M_y, rhs_y; tol = tolad_y * ε, log = true)
x .+= Δx
y .+= Δy
return 2 * (xhist.iters + yhist.iters) + 4
end
#CGDA only computing the equilibrium for the first player
function CG_CGDA_x!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, η, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player x
function MVec_x(inp)
yTemp = ∇y∇x_g(inp, x, y)
return inp - η^2 * ∇x∇y_f(yTemp, x, y)
end
M_x = LinearMap{eltype(x)}(MVec_x, size(x,1), size(x,1))
rhs_x = - (∇x_f - η * ∇x∇y_f(∇y_g, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_x = norm(rhs_x) / norm(MVec_x(Δx) - rhs_x)
Δx, xhist = cg!(Δx, M_x, rhs_x; tol = tolad_x * ε, log = true)
Δy .= - (∇y_g + η * ∇y∇x_g(Δx, x, y))
x .+= η * Δx
y .+= η * Δy
return 2 * (xhist.iters ) + 4
end
function CG_CGDA_x!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, ηx, ηy, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player x
function MVec_x(inp)
yTemp = ηy * ∇y∇x_g(inp, x, y)
return ηx \ inp - ∇x∇y_f(yTemp, x, y)
end
M_x = LinearMap{eltype(x)}(MVec_x, size(x,1), size(x,1))
rhs_x = - (∇x_f - ∇x∇y_f(ηy * ∇y_g, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_x = norm(rhs_x) / norm(MVec_x(Δx) - rhs_x)
Δx, xhist = cg!(Δx, M_x, rhs_x; tol = tolad_x * ε, log = true)
Δy .= - ηy * (∇y_g + ∇y∇x_g(Δx, x, y))
x .+= Δx
y .+= Δy
return 2 * (xhist.iters ) + 4
end
#CGDA only computing the equilibrium for the second player
function CG_CGDA_y!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, η, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player y
function MVec_y(inp)
yTemp = ∇x∇y_f(inp, x, y)
return inp - η^2 * ∇y∇x_g(yTemp, x, y)
end
M_y = LinearMap{eltype(x)}(MVec_y, size(y,1), size(y,1))
rhs_y = - (∇y_g - η * ∇y∇x_g(∇x_f, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_y = norm(rhs_y) / norm(MVec_y(Δy) - rhs_y)
Δy, yhist = cg!(Δy, M_y, rhs_y; tol = tolad_y * ε, log = true)
Δx .= - (∇x_f + η * ∇x∇y_f(Δy, x, y))
x .+= η * Δx
y .+= η * Δy
return 2 * (yhist.iters) + 4
end
function CG_CGDA_y!(x, y, Δx, Δy, ∇x_f, ∇x∇y_f, ∇y_g, ∇y∇x_g, ηx, ηy, ε)
∇x_f = ∇x_f(x, y)
∇y_g = ∇y_g(x, y)
#Defining the matvec for the solution of the system of player y
function MVec_y(inp)
yTemp = ηx * ∇x∇y_f(inp, x, y)
return ηy \ inp - ∇y∇x_g(yTemp, x, y)
end
M_y = LinearMap{eltype(x)}(MVec_y, size(y,1), size(y,1))
rhs_y = - (∇y_g - ∇y∇x_g(ηx * ∇x_f, x, y))
# Adjusting the tolerance of the algorithm, only necessary due to
# limitations of package, hence not tracked.
tolad_y = norm(rhs_y) / norm(MVec_y(Δy) - rhs_y)
Δy, yhist = cg!(Δy, M_y, rhs_y; tol = tolad_y * ε, log = true)
Δx .= - ηx * (∇x_f + ∇x∇y_f(Δy, x, y))
x .+= Δx
y .+= Δy
return 2 * (yhist.iters) + 4
end