forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_autodiff_subgraphs.cpp
478 lines (424 loc) · 15.3 KB
/
create_autodiff_subgraphs.cpp
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#include <torch/csrc/jit/passes/create_autodiff_subgraphs.h>
#include <c10/util/Exception.h>
#include <torch/csrc/jit/ir/alias_analysis.h>
#include <torch/csrc/jit/ir/ir.h>
#include <torch/csrc/jit/jit_log.h>
#include <torch/csrc/jit/passes/canonicalize.h>
#include <torch/csrc/jit/passes/common_subexpression_elimination.h>
#include <torch/csrc/jit/passes/remove_redundant_profiles.h>
#include <torch/csrc/jit/passes/utils/subgraph_utils.h>
#include <torch/csrc/jit/runtime/autodiff.h>
namespace torch {
namespace jit {
namespace {
struct WorkBlock : public std::pair<Node*, Node*> {
using pair::pair;
Node* begin() {
return this->first;
}
Node* end() {
return this->second;
}
};
class SubgraphSlicer {
public:
SubgraphSlicer(
Block* block,
std::shared_ptr<Graph> graph,
size_t minSubgraphSize,
AliasDb& aliasDb,
std::vector<Node*>& diff_nodes)
: block_(block),
graph_(std::move(graph)),
minSubgraphSize_(minSubgraphSize),
aliasDb_(aliasDb),
diff_nodes_(diff_nodes) {}
void run() {
// We maintain alias db correctness in-place while building up the autodiff
// subgraphs, however it is difficult to preserve correctness when
// un-inlining autodiff subgraphs. We first recursively construct all
// subgraphs and then recursively cleanup & unmerge the small subgraphs
buildupSubgraphs();
GRAPH_DUMP("before unfuseAliasedOutputs", graph_);
unfuseAliasedOutputs(block_);
cleanupSubgraphs();
// Run CSE globally onceto eliminate duplicates that may have occurred
// while inlining subgraphs.
EliminateCommonSubexpression(graph_);
}
void cleanupSubgraphs() {
auto curNode = *block_->nodes().rbegin();
while (curNode != *block_->nodes().rend()) {
// Save the previous node, since we might delete `curNode` in next block
auto prevNode = curNode->prev();
if (curNode->kind() == prim::DifferentiableGraph) {
// Inlining nodes may cause some subexpression to come back in the
// subgraphs (for example, copying constants in repeatedly will generate
// redundant prim::Constants). Run CSE to clean them up.
EliminateCommonSubexpression(curNode->g(attr::Subgraph));
if (!inlineIfTooSmall(curNode)) {
diff_nodes_.push_back(curNode);
}
}
curNode = prevNode;
}
for (Node* n : block_->nodes()) {
for (Block* b : n->blocks()) {
SubgraphSlicer(b, graph_, minSubgraphSize_, aliasDb_, diff_nodes_)
.cleanupSubgraphs();
}
}
}
void buildupSubgraphs() {
// We need to run the slicer multiple times in order to get all merge
// opportunities. This is because moveBeforeTopologicalValid may reorder
// nodes to be AFTER the current iteration point. In order to properly
// consider those nodes for merging, we need run the pass until no changes
// have been made.
//
// Example:
// c = f(a, b)
// d = f(c)
// e = f(d) <- iter is here, moving upward
// After c.moveBeforeTopologicallyValid(e), we have:
// c = f(a, b)
// e = f(d) <- iter still here
// d = f(c) <- this was node moved on the other side.
// see [workblocks]
auto workblocks = buildWorkBlocks();
for (auto& workblock : workblocks) {
bool any_changed = true;
while (any_changed) {
any_changed = false;
for (auto it = workblock.end()->reverseIterator();
it != workblock.begin()->reverseIterator();) {
// NOLINTNEXTLINE(cppcoreguidelines-init-variables)
bool changed;
std::tie(it, changed) = scanNode(*it);
any_changed |= changed;
}
}
}
// Construct Subgraphs Recursively
for (Node* n : block_->nodes()) {
for (auto subBlock : n->blocks()) {
SubgraphSlicer(
subBlock, graph_, minSubgraphSize_, aliasDb_, diff_nodes_)
.buildupSubgraphs();
}
}
}
private:
void unfuseAliasedOutputs(Block* b) {
bool any_changed = true;
while (any_changed) {
any_changed = false;
// we walk in the reverse order, so we can skip
// nodes that might get unfused after the current
// prim::DifferentiableGraph
for (auto n : b->nodes().reverse()) {
if (n->kind() == prim::DifferentiableGraph) {
// aliased outputs in DifferentiableGraphs must be unfused
// since autodiff doesn't know how to handle them correctly
// N.B. Note, |= since we don't want `unfuseAliasedOutputs`
// to short-circuit
any_changed |= SubgraphUtils::unmergeAliasedOutputs(n);
any_changed |= SubgraphUtils::unmergeOutputsAlisingInputs(n);
GRAPH_DEBUG(
"any_changed on ",
any_changed,
" ",
n->g(attr::Subgraph)->toString(false));
}
}
}
for (Node* n : b->nodes()) {
for (Block* ib : n->blocks()) {
unfuseAliasedOutputs(ib);
}
}
}
std::vector<WorkBlock> buildWorkBlocks() {
// [workblocks]
// the IR has many nodes which can never be reordered around, such as a
// prim::Bailout. if a node N is surrounded by two nodes which cannot be
// reordered, A and B, then a differentiable subgraph that is created from N
// can only contain nodes from (A, B) The nodes from A to B represent one
// work block for the subgraph slicer to work on. By creating these up
// front, we avoid retraversing the whole graph block any time scanNode
// returns, and we can also avoid attempting to create differentiable
// subgraphs in work blocks that do not contain a # of differentiable nodes
// >= minSubgraphSize_
Node* end_bound_node = block_->return_node();
Node* curr = end_bound_node->prev();
std::vector<WorkBlock> worklist;
size_t differentiable_nodes = 0;
while (curr != block_->param_node()) {
differentiable_nodes += shouldConsiderForMerge(curr);
// cannot reorder around side effectful nodes
if (curr->hasSideEffects()) {
// not enough differentiable nodes to create a differentiable subgraph
if (differentiable_nodes >= minSubgraphSize_) {
worklist.emplace_back(curr, end_bound_node);
}
differentiable_nodes = 0;
end_bound_node = curr;
}
curr = curr->prev();
}
if (differentiable_nodes >= minSubgraphSize_) {
worklist.emplace_back(curr, end_bound_node);
}
return worklist;
}
// Inline this node's group subgraph into the outer graph if it's smaller
// than the specified minimum size.
//
// Returns true if an inlining has occurred, false otherwise.
bool inlineIfTooSmall(Node* n) {
AT_ASSERT(n->kind() == prim::DifferentiableGraph);
auto subgraph = SubgraphUtils::getSubgraph(n);
size_t i = 0;
for (auto it = subgraph->nodes().begin(); it != subgraph->nodes().end();
++it) {
i += !it->notExecutedOp();
if (i >= minSubgraphSize_) {
return false;
}
}
SubgraphUtils::unmergeSubgraph(n);
return true;
}
value_list sortReverseTopological(ArrayRef<Value*> inputs) {
value_list result;
for (auto i : inputs) {
if (i->node()->owningBlock() == block_) {
result.push_back(i);
}
}
// Sort in reverse topological order
std::sort(result.begin(), result.end(), [&](Value* a, Value* b) {
return a->node()->isAfter(b->node());
});
return result;
}
bool isViewOp(Node* n) {
switch (n->kind()) {
case aten::view:
case aten::view_as:
case aten::reshape:
case aten::reshape_as:
case aten::transpose:
case aten::expand:
case aten::expand_as:
return true;
}
return false;
}
bool shouldConsiderForMerge(Node* node) {
// if we're already in the process of merging
if (node->kind() == prim::DifferentiableGraph) {
return true;
}
if (node->kind() == prim::Constant) {
return false;
}
// view ops as outputs of differentiable subgraphs can cause incorrect
// differentiation for now, do not include them in the subgraph
if (isViewOp(node)) {
return false;
}
return isDifferentiable(node);
}
std::pair<graph_node_list::iterator, bool> scanNode(Node* consumer) {
if (shouldConsiderForMerge(consumer)) {
if (consumer->kind() != prim::DifferentiableGraph) {
consumer = SubgraphUtils::createSingletonSubgraphAndUpdateAliasing(
consumer, prim::DifferentiableGraph, aliasDb_);
}
auto inputs = sortReverseTopological(consumer->inputs());
for (auto input : inputs) {
if (auto group = tryMerge(consumer, input->node())) {
// we successfully merged, so the new group's `inputs` may have
// changed. So rescan the new group for more merging opportunities.
return std::make_pair(group.value()->reverseIterator(), true);
}
}
}
return std::make_pair(++consumer->reverseIterator(), false);
}
// Try to merge `producer` into `consumer`. If successful, this destroys
// `producer` and returns the `consumer` group.
c10::optional<Node*> tryMerge(Node* consumer, Node* producer) {
AT_ASSERT(consumer->kind() == prim::DifferentiableGraph);
bool canMerge = shouldConsiderForMerge(producer) &&
aliasDb_.moveBeforeTopologicallyValid(producer, consumer);
if (!canMerge) {
return c10::nullopt;
}
SubgraphUtils::mergeNodeIntoSubgraphAndUpdateAliasing(
producer, consumer, aliasDb_);
return consumer;
}
Block* block_;
std::shared_ptr<Graph> graph_;
size_t minSubgraphSize_;
AliasDb& aliasDb_;
std::vector<Node*>& diff_nodes_;
};
c10::optional<bool> getProfileNodeRequiresGrad(Node* n) {
TORCH_INTERNAL_ASSERT(n->kind() == prim::profile);
if (!n->hasAttribute(attr::profiled_type)) {
return c10::nullopt;
}
auto& type = n->ty(attr::profiled_type);
if (type->castRaw<TensorType>() == nullptr) {
return c10::nullopt;
}
return type->expectRef<TensorType>().requiresGrad();
}
struct ContextMapping {
std::vector<const Node*> ctx_stack_;
std::unordered_map<const Node*, const Node*> node_to_ctx_;
void processNode(Node* n) {
node_to_ctx_[n] = ctx_stack_.back();
if (n->kind() == prim::Enter) {
ctx_stack_.push_back(n);
} else if (n->kind() == prim::Exit) {
ctx_stack_.pop_back();
}
}
void processBlock(Block* block) {
for (Node* n : block->nodes()) {
processNode(n);
for (Block* b : n->blocks()) {
processBlock(b);
}
if (n->kind() == prim::DifferentiableGraph) {
const auto& subgraph = n->g(attr::Subgraph);
processBlock(subgraph->block());
}
}
}
ContextMapping(const std::shared_ptr<Graph>& graph) {
ctx_stack_.push_back(nullptr);
processBlock(graph->block());
}
const Node* get(const Node* n) const {
auto it = node_to_ctx_.find(n);
TORCH_INTERNAL_ASSERT(
it != node_to_ctx_.end(),
"Cannot find node in node-to-context mapping.");
return it->second;
}
bool has(const Node* n) const {
return node_to_ctx_.find(n) != node_to_ctx_.end();
}
};
c10::optional<bool> findRequiresGradForOutput(
Node* diff_graph,
Value* output,
const ContextMapping& ctx_mapping) {
for (auto& use : output->uses()) {
// [Only consider profiles in the same context]
// Ignore profiled uses if the use is within a different context.
// For example, a profile node within a no_grad() context will record the
// wrong requires_grad information.
if (ctx_mapping.has(use.user) &&
ctx_mapping.get(use.user) != ctx_mapping.get(diff_graph)) {
continue;
}
if (use.user->kind() == prim::profile) {
c10::optional<bool> req_grad_use;
if ((req_grad_use = getProfileNodeRequiresGrad(use.user)).has_value()) {
return req_grad_use.value();
}
}
// maybe the profile node got absorbed into a differentiable graph
if (use.user->kind() == prim::DifferentiableGraph) {
const auto& dg = use.user->g(attr::Subgraph);
// check all the uses of this graph input to look for profile nodes.
Value* dg_value = dg->inputs()[use.offset];
for (auto& dg_use : dg_value->uses()) {
// See [Only consider profiles in the same context]
if (ctx_mapping.has(dg_use.user) &&
ctx_mapping.get(dg_use.user) != ctx_mapping.get(diff_graph)) {
continue;
}
if (dg_use.user->kind() == prim::profile) {
c10::optional<bool> req_grad_use;
if ((req_grad_use = getProfileNodeRequiresGrad(dg_use.user))
.has_value()) {
return req_grad_use.value();
}
}
}
}
}
return c10::nullopt;
}
void AddRequiresGradToDifferentiableGraph(
Node* diff_graph,
const ContextMapping& ctx_mapping) {
TORCH_INTERNAL_ASSERT(diff_graph->kind() == prim::DifferentiableGraph);
const auto& subgraph = diff_graph->g(attr::Subgraph);
for (auto i : c10::irange(subgraph->outputs().size())) {
Value* output = subgraph->outputs()[i];
if (output->node()->kind() == prim::profile) {
// already have requires_grad info from this profile node
continue;
}
if (output->type()->castRaw<TensorType>() == nullptr) {
// non-tensors don't get profiled.
continue;
}
if (output->type()->expectRef<TensorType>().requiresGrad().has_value()) {
continue;
}
// this node doesn't have any requires_grad info.
// look at its uses to try to find a profile node.
auto requires_grad = findRequiresGradForOutput(
diff_graph, diff_graph->output(i), ctx_mapping);
output->setType(output->type()->expectRef<TensorType>().withRequiresGrad(
requires_grad));
}
}
void AddRequiresGradOnOutputNodes(
Block* block,
const ContextMapping& ctx_mapping) {
for (Node* n : block->nodes()) {
if (n->kind() == prim::DifferentiableGraph) {
AddRequiresGradToDifferentiableGraph(n, ctx_mapping);
}
for (Block* b : n->blocks()) {
AddRequiresGradOnOutputNodes(b, ctx_mapping);
}
}
}
// autodiff.cpp needs to know, for each output, whether or not it requires
// grad. Sometimes a profile node will be present on the output, but sometimes
// it won't be present. This might happen if there's a node with side effects
// in between the definition of the output node and the profile node; in this
// case the profile node and output node would be in different workblocks and
// couldn't be merged into the same DifferentiableGraph. (see [workblocks])
// Or it could happen if the output is profiled twice and the profile nodes get
// removed by unfusedAliasedOutputs.
void AddRequiresGradOnOutputNodes(const std::shared_ptr<Graph>& graph) {
ContextMapping ctx_mapping(graph);
AddRequiresGradOnOutputNodes(graph->block(), ctx_mapping);
}
} // anonymous namespace
std::vector<Node*> CreateAutodiffSubgraphs(
const std::shared_ptr<Graph>& graph,
size_t threshold) {
std::vector<Node*> diff_nodes;
AliasDb db(graph);
GRAPH_DEBUG("Before creating autodiff subgraphs", *graph);
SubgraphSlicer(graph->block(), graph, threshold, db, diff_nodes).run();
GRAPH_DEBUG("After creating autodiff subgraphs", *graph);
AddRequiresGradOnOutputNodes(graph);
GRAPH_DEBUG("diff_nodes.size() ", diff_nodes.size());
return diff_nodes;
}
} // namespace jit
} // namespace torch