-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathEnzymeCore08Ext.jl
More file actions
213 lines (193 loc) · 5.86 KB
/
EnzymeCore08Ext.jl
File metadata and controls
213 lines (193 loc) · 5.86 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
function fwd(ctx, config, f, args...)
EnzymeCore.autodiff_deferred(EnzymeCore.set_runtime_activity(Forward, config), Const(f), Const{Nothing}, Const(ctx), args...)
return nothing
end
function EnzymeRules.forward(
config,
func::Const{<:Kernel},
::Type{Const{Nothing}},
args...;
ndrange = nothing,
workgroupsize = nothing,
)
kernel = func.val
f = kernel.f
fwd_kernel = similar(kernel, gpu_fwd)
return fwd_kernel(config, f, args...; ndrange, workgroupsize)
end
_enzyme_mkcontext(kernel::Kernel, ndrange, iterspace, dynamic) =
mkcontext(kernel, ndrange, iterspace)
_augmented_return(::Kernel, subtape, arg_refs, tape_type) =
AugmentedReturn{Nothing, Nothing, Any}(nothing, nothing, (subtape, arg_refs, tape_type))
function _create_tape_kernel(
kernel::Kernel{<:GPU},
Mode,
FT,
ctxTy,
ndrange,
iterspace,
args2...,
)
# For peeking at the TapeType we need to first construct a correct compilation job
# this requires the use of the device side representation of arguments.
# So we convert the arguments here, this is a bit wasteful since the `aug_kernel` call
# will later do the same.
dev_args2 = ((argconvert(kernel, a) for a in args2)...,)
dev_TT = map(Core.Typeof, dev_args2)
job =
EnzymeCore.compiler_job_from_backend(backend(kernel), typeof(() -> return), Tuple{})
TapeType = EnzymeCore.tape_type(
job,
Mode,
FT,
Const{Nothing},
Const{ctxTy},
dev_TT...,
)
# Allocate per thread
subtape = allocate(backend(kernel), TapeType, prod(ndrange))
aug_kernel = similar(kernel, aug_fwd)
return TapeType, subtape, aug_kernel
end
function fwd(
ctx,
f::FT,
mode::Mode,
subtape,
::Val{TapeType},
args...,
) where {Mode, FT, TapeType}
# A2 = Const{Nothing} -- since f->Nothing
forward, _ = EnzymeCore.autodiff_deferred_thunk(
mode,
TapeType,
Const{Core.Typeof(f)},
Const{Nothing},
Const{Core.Typeof(ctx)},
map(Core.Typeof, args)...,
)
# On the GPU: F is a per thread function
# On the GPU: subtape::Vector
if __validindex(ctx)
I = __index_Global_Linear(ctx)
subtape[I] = forward(Const(f), Const(ctx), args...)[1]
end
return nothing
end
function rev(
ctx,
f::FT,
mode::Mode,
subtape,
::Val{TapeType},
args...,
) where {Mode, FT, TapeType}
# XXX: TapeType and A2 as args to autodiff_deferred_thunk
_, reverse = EnzymeCore.autodiff_deferred_thunk(
mode,
TapeType,
Const{Core.Typeof(f)},
Const{Nothing},
Const{Core.Typeof(ctx)},
map(Core.Typeof, args)...,
)
if __validindex(ctx)
I = __index_Global_Linear(ctx)
tp = subtape[I]
reverse(Const(f), Const(ctx), args..., tp)
end
return nothing
end
function EnzymeRules.augmented_primal(
config::RevConfig,
func::Const{<:Kernel},
::Type{Const{Nothing}},
args::Vararg{Any, N};
ndrange = nothing,
workgroupsize = nothing,
) where {N}
kernel = func.val
f = kernel.f
ndrange, workgroupsize, iterspace, dynamic =
launch_config(kernel, ndrange, workgroupsize)
ctx = _enzyme_mkcontext(kernel, ndrange, iterspace, dynamic)
ctxTy = Core.Typeof(ctx) # CompilerMetadata{ndrange(kernel), Core.Typeof(dynamic)}
# TODO autodiff_deferred on the func.val
ModifiedBetween = Val((overwritten(config)[1], false, overwritten(config)[2:end]...))
FT = Const{Core.Typeof(f)}
arg_refs = ntuple(Val(N)) do i
Base.@_inline_meta
if args[i] isa Active
error("Active kernel arguments not supported")
else
nothing
end
end
args2 = ntuple(Val(N)) do i
Base.@_inline_meta
if args[i] isa Active
MixedDuplicated(args[i].val, arg_refs[i])
else
args[i]
end
end
Mode = EnzymeCore.set_runtime_activity(ReverseSplitModified(ReverseSplitWithPrimal, ModifiedBetween), config)
TapeType, subtape, aug_kernel = _create_tape_kernel(
kernel,
Mode,
FT,
ctxTy,
ndrange,
iterspace,
args2...,
)
aug_kernel(f, Mode, subtape, Val(TapeType), args2...; ndrange, workgroupsize)
# TODO the fact that ctxTy is type unstable means this is all type unstable.
# Since custom rules require a fixed return type, explicitly cast to Any, rather
# than returning a AugmentedReturn{Nothing, Nothing, T} where T.
return _augmented_return(kernel, subtape, arg_refs, TapeType)
end
function EnzymeRules.reverse(
config::RevConfig,
func::Const{<:Kernel},
::Type{<:EnzymeCore.Annotation},
tape,
args::Vararg{Any, N};
ndrange = nothing,
workgroupsize = nothing,
) where {N}
subtape, arg_refs, tape_type = tape
args2 = ntuple(Val(N)) do i
Base.@_inline_meta
if args[i] isa Active
MixedDuplicated(args[i].val, arg_refs[i])
else
args[i]
end
end
kernel = func.val
f = kernel.f
ModifiedBetween = Val((overwritten(config)[1], false, overwritten(config)[2:end]...))
Mode = EnzymeCore.set_runtime_activity(ReverseSplitModified(ReverseSplitWithPrimal, ModifiedBetween), config)
rev_kernel = similar(kernel, rev)
rev_kernel(
f,
Mode,
subtape,
Val(tape_type),
args2...;
ndrange,
workgroupsize,
)
res = ntuple(Val(N)) do i
Base.@_inline_meta
if args[i] isa Active
arg_refs[i][]
else
nothing
end
end
# Reverse synchronization right after the kernel launch
synchronize(backend(kernel))
return res
end