-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathforward_twoarg.jl
More file actions
114 lines (108 loc) · 3.05 KB
/
forward_twoarg.jl
File metadata and controls
114 lines (108 loc) · 3.05 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
## Pushforward
struct MooncakeTwoArgPushforwardPrep{SIG, Tcache, FT0, FT, YT, CT} <: DI.PushforwardPrep{SIG}
_sig::Val{SIG}
cache::Tcache
dcall::FT0
df!::FT
dy::YT
context_tangents::CT
end
function DI.prepare_pushforward_nokwarg(
strict::Val,
f!::F,
y,
backend::AutoMooncakeForward,
x,
tx::NTuple,
contexts::Vararg{DI.Context, C}
) where {F, C}
_sig = DI.signature(f!, y, backend, x, tx, contexts...; strict)
config = get_config(backend)
cache = prepare_derivative_cache(
call_and_return,
f!,
y,
x,
map(DI.unwrap, contexts)...;
config
)
dcall = zero_tangent_or_primal(call_and_return, backend)
df! = zero_tangent_or_primal(f!, backend)
dy = zero_tangent_or_primal(y, backend)
context_tangents = map(zero_tangent_unwrap, contexts)
prep = MooncakeTwoArgPushforwardPrep(_sig, cache, dcall, df!, dy, context_tangents)
return prep
end
function DI.value_and_pushforward(
f!::F,
y,
prep::MooncakeTwoArgPushforwardPrep,
backend::AutoMooncakeForward,
x::X,
tx::NTuple,
contexts::Vararg{DI.Context, C}
) where {F, C, X}
DI.check_prep(f!, y, prep, backend, x, tx, contexts...)
ty = map(tx) do dx
_, new_dy = value_and_derivative!!(
prep.cache,
(call_and_return, prep.dcall),
(f!, prep.df!),
(y, prep.dy),
(x, dx),
map(first_unwrap, contexts, prep.context_tangents)...,
)
return _maybe_to_primal(new_dy, y)
end
return y, ty
end
function DI.pushforward(
f!::F,
y,
prep::MooncakeTwoArgPushforwardPrep,
backend::AutoMooncakeForward,
x,
tx::NTuple,
contexts::Vararg{DI.Context, C}
) where {F, C}
DI.check_prep(f!, y, prep, backend, x, tx, contexts...)
return DI.value_and_pushforward(f!, y, prep, backend, x, tx, contexts...)[2]
end
function DI.value_and_pushforward!(
f!::F,
y::Y,
ty::NTuple,
prep::MooncakeTwoArgPushforwardPrep,
backend::AutoMooncakeForward,
x::X,
tx::NTuple,
contexts::Vararg{DI.Context, C}
) where {F, C, X, Y}
DI.check_prep(f!, y, prep, backend, x, tx, contexts...)
foreach(tx, ty) do dx, dy
_, new_dy = value_and_derivative!!(
prep.cache,
(call_and_return, prep.dcall),
(f!, prep.df!),
(y, dy),
(x, dx),
map(first_unwrap, contexts, prep.context_tangents)...,
)
copyto!(dy, _maybe_to_primal(new_dy, y))
end
return y, ty
end
function DI.pushforward!(
f!::F,
y,
ty::NTuple,
prep::MooncakeTwoArgPushforwardPrep,
backend::AutoMooncakeForward,
x,
tx::NTuple,
contexts::Vararg{DI.Context, C}
) where {F, C}
DI.check_prep(f!, y, prep, backend, x, tx, contexts...)
DI.value_and_pushforward!(f!, y, ty, prep, backend, x, tx, contexts...)
return ty
end