-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathhessian.jl
More file actions
151 lines (139 loc) · 4.51 KB
/
hessian.jl
File metadata and controls
151 lines (139 loc) · 4.51 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
struct SparseHessianPrep{
BS<:DI.BatchSizeSettings,
C<:AbstractColoringResult{:symmetric,:column},
M<:AbstractMatrix{<:Number},
S<:AbstractVector{<:NTuple},
R<:AbstractVector{<:NTuple},
E2<:DI.HVPPrep,
E1<:DI.GradientPrep,
} <: DI.HessianPrep
batch_size_settings::BS
coloring_result::C
compressed_matrix::M
batched_seeds::S
batched_results::R
hvp_prep::E2
gradient_prep::E1
end
SMC.sparsity_pattern(prep::SparseHessianPrep) = sparsity_pattern(prep.coloring_result)
SMC.column_colors(prep::SparseHessianPrep) = column_colors(prep.coloring_result)
SMC.column_groups(prep::SparseHessianPrep) = column_groups(prep.coloring_result)
SMC.ncolors(prep::SparseHessianPrep) = ncolors(prep.coloring_result)
## Hessian, one argument
function DI.prepare_hessian(
f::F, backend::AutoSparse, x, contexts::Vararg{DI.Context,C}
) where {F,C}
dense_backend = dense_ad(backend)
sparsity = DI.hessian_sparsity_with_contexts(
f, sparsity_detector(backend), x, contexts...
)
problem = ColoringProblem{:symmetric,:column}()
coloring_result = coloring(
sparsity, problem, coloring_algorithm(backend); decompression_eltype=eltype(x)
)
N = length(column_groups(coloring_result))
batch_size_settings = DI.pick_batchsize(DI.outer(dense_backend), N)
return _prepare_sparse_hessian_aux(
batch_size_settings, coloring_result, f, backend, x, contexts...
)
end
function _prepare_sparse_hessian_aux(
batch_size_settings::DI.BatchSizeSettings{B},
coloring_result::AbstractColoringResult{:symmetric,:column},
f::F,
backend::AutoSparse,
x,
contexts::Vararg{DI.Context,C},
) where {B,F,C}
(; N, A) = batch_size_settings
dense_backend = dense_ad(backend)
groups = column_groups(coloring_result)
seeds = [DI.multibasis(x, eachindex(x)[group]) for group in groups]
compressed_matrix = stack(_ -> vec(similar(x)), groups; dims=2)
batched_seeds = [
ntuple(b -> seeds[1 + ((a - 1) * B + (b - 1)) % N], Val(B)) for a in 1:A
]
batched_results = [ntuple(b -> similar(x), Val(B)) for _ in batched_seeds]
hvp_prep = DI.prepare_hvp(f, dense_backend, x, batched_seeds[1], contexts...)
gradient_prep = DI.prepare_gradient(f, DI.inner(dense_backend), x, contexts...)
return SparseHessianPrep(
batch_size_settings,
coloring_result,
compressed_matrix,
batched_seeds,
batched_results,
hvp_prep,
gradient_prep,
)
end
function DI.hessian!(
f::F,
hess,
prep::SparseHessianPrep{<:DI.BatchSizeSettings{B}},
backend::AutoSparse,
x,
contexts::Vararg{DI.Context,C},
) where {F,B,C}
(;
batch_size_settings,
coloring_result,
compressed_matrix,
batched_seeds,
batched_results,
hvp_prep,
) = prep
(; N) = batch_size_settings
dense_backend = dense_ad(backend)
hvp_prep_same = DI.prepare_hvp_same_point(
f, hvp_prep, dense_backend, x, batched_seeds[1], contexts...
)
for a in eachindex(batched_seeds, batched_results)
DI.hvp!(
f,
batched_results[a],
hvp_prep_same,
dense_backend,
x,
batched_seeds[a],
contexts...,
)
for b in eachindex(batched_results[a])
copyto!(
view(compressed_matrix, :, 1 + ((a - 1) * B + (b - 1)) % N),
vec(batched_results[a][b]),
)
end
end
decompress!(hess, compressed_matrix, coloring_result)
return hess
end
function DI.hessian(
f::F, prep::SparseHessianPrep{B}, backend::AutoSparse, x, contexts::Vararg{DI.Context,C}
) where {F,B,C}
hess = similar(sparsity_pattern(prep), eltype(x))
return DI.hessian!(f, hess, prep, backend, x, contexts...)
end
function DI.value_gradient_and_hessian!(
f::F,
grad,
hess,
prep::SparseHessianPrep,
backend::AutoSparse,
x,
contexts::Vararg{DI.Context,C},
) where {F,C}
y, _ = DI.value_and_gradient!(
f, grad, prep.gradient_prep, DI.inner(dense_ad(backend)), x, contexts...
)
DI.hessian!(f, hess, prep, backend, x, contexts...)
return y, grad, hess
end
function DI.value_gradient_and_hessian(
f::F, prep::SparseHessianPrep, backend::AutoSparse, x, contexts::Vararg{DI.Context,C}
) where {F,C}
y, grad = DI.value_and_gradient(
f, prep.gradient_prep, DI.inner(dense_ad(backend)), x, contexts...
)
hess = DI.hessian(f, prep, backend, x, contexts...)
return y, grad, hess
end