forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
canonicalize.cpp
235 lines (204 loc) · 6.75 KB
/
canonicalize.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
#include <torch/csrc/jit/passes/canonicalize.h>
#include <c10/util/irange.h>
#include <torch/csrc/jit/ir/ir_views.h>
namespace torch {
namespace jit {
// Canonicalize a graph, renumbering it so that all structurally equivalent
// graphs have same numbers.
// keep_unique_names: If false, canonicalizes unique names by removing them
// and replacing them with normal value names.
// Otherwise, ignores values with unique names.
std::shared_ptr<Graph> Canonicalize(
const std::shared_ptr<Graph>& graph,
bool keep_unique_names) {
auto r = std::make_shared<Graph>(graph->current_scope());
std::unordered_map<Value*, Value*> rn_env;
auto rn_fn = [&](Value* v) { return rn_env.at(v); };
for (auto* input : graph->inputs()) {
auto* r_input = r->addInput();
r_input->copyMetadata(input);
if (!keep_unique_names)
r_input->setDebugName("");
rn_env[input] = r_input;
}
for (auto* node : graph->nodes()) {
auto* r_node = r->createClone(node, rn_fn);
if (!keep_unique_names) {
for (auto* output : r_node->outputs()) {
output->setDebugName("");
}
}
r->appendNode(r_node);
auto outputs = node->outputs();
auto r_outputs = r_node->outputs();
for (const auto i : c10::irange(outputs.size())) {
rn_env[outputs.at(i)] = r_outputs.at(i);
}
if (node->hasAttribute(attr::Subgraph)) {
r_node->g_(
attr::Subgraph,
Canonicalize(node->g(attr::Subgraph), keep_unique_names));
}
}
for (auto* output : graph->outputs()) {
r->registerOutput(rn_fn(output));
}
return r;
}
// Which index in b's owning Node is b
size_t blockIndex(const Block* b) {
auto n = b->owningNode();
AT_ASSERT(n);
for (size_t i = 0; i < n->blocks().size(); ++i) {
if (n->blocks()[i] == b) {
return i;
}
}
AT_ASSERT(false);
}
/*
* This establishes a canonical ordering of nodes.
* If n1 and n2 are in the same block, whichever node appears first
* is before the other.
* If n1 and n2 are contained in different blocks of an if node,
* then whichever block is in the true block is ordered before the other.
* If n1 contains n2, then n1 is before n2. This has the nice property that
* whichever node appears first in a dump of the graph is before the other.
* NB: this is not a topological index. Topologically, two nodes in
* different blocks of an if node are not topologically < or > each other.
*/
bool isBefore(Node* n1, Node* n2) {
// Invalid to call with the same node as both args
AT_ASSERT(n1 != n2);
// Set n1 and n2 to be the number of blocks from the Graph block
size_t d_1 = n1->blocksFromGraphBlock();
size_t d_2 = n2->blocksFromGraphBlock();
for (; d_1 > d_2; --d_1) {
n1 = n1->owningBlock()->owningNode();
// n2 contains n1
if (n1 == n2) {
return false;
}
}
for (; d_2 > d_1; --d_2) {
n2 = n2->owningBlock()->owningNode();
// n1 contains n2
if (n2 == n1) {
return true;
}
}
// Now they are the same numer of blocks from the graph block,
// recurse upwards, checking if they are on the same block
while (true) {
if (n1->owningBlock() == n2->owningBlock()) {
return n1->isBefore(n2);
}
auto new_n1 = n1->owningBlock()->owningNode();
auto new_n2 = n2->owningBlock()->owningNode();
AT_ASSERT(new_n1 != nullptr);
AT_ASSERT(new_n2 != nullptr);
if (new_n1 == new_n2) {
// take whichever node is in the earlier block
auto index_1 = blockIndex(n1->owningBlock());
auto index_2 = blockIndex(n2->owningBlock());
return index_1 < index_2;
}
n1 = new_n1;
n2 = new_n2;
}
}
bool isBefore(const Use& a, const Use& b) {
// If two uses are the same node, we order on offset
if (a.user == b.user) {
return a.offset < b.offset;
}
return isBefore(a.user, b.user);
}
bool isAfter(const Use& a, const Use& b) {
if (a.user == b.user && a.offset == b.offset) {
return false;
}
return !isBefore(a, b);
}
bool isBeforeOrAfter(const Use& a, const Use& b, bool checking_before) {
return checking_before ? isBefore(a, b) : isAfter(a, b);
}
c10::optional<const Use> firstOrLastUse(Value* v, bool find_first) {
if (v->uses().empty()) {
return c10::nullopt;
}
Use extreme_use = v->uses()[0];
for (size_t i = 1; i < v->uses().size(); ++i) {
auto n_use = v->uses()[i];
if (!isBeforeOrAfter(extreme_use, n_use, find_first)) {
extreme_use = n_use;
}
}
return extreme_use;
}
std::vector<c10::optional<const Use>> gatherFirstUses(
at::ArrayRef<Value*> values) {
return fmap(values, [&](Value* v) -> c10::optional<const Use> {
return firstOrLastUse(v, true);
});
}
std::vector<size_t> sort_indexes(at::ArrayRef<Value*> values) {
// initialize original index locations
std::vector<size_t> idx(values.size());
std::iota(idx.begin(), idx.end(), 0);
std::vector<c10::optional<const Use>> first_uses = gatherFirstUses(values);
// Sort values based on canonical ordering of their first usage
std::sort(idx.begin(), idx.end(), [&first_uses](size_t i1, size_t i2) {
// if neither has any uses, use original ordering. Since the
// only values that jitter are ones added by the compiler and are guaranteed
// to have uses, original ordering is fine.
if (first_uses[i1] == c10::nullopt && first_uses[i2] == c10::nullopt) {
return i1 < i2;
}
if (first_uses[i1] == c10::nullopt) {
return false;
} else if (first_uses[i2] == c10::nullopt) {
return true;
}
auto fst_v1 = *first_uses[i1];
auto fst_v2 = *first_uses[i2];
return isBefore(fst_v1, fst_v2);
});
return idx;
}
void CanonicalizeLoopOutputs(Node* n) {
auto new_indices = sort_indexes(n->outputs());
LoopView(n).permuteLoopCarried(new_indices);
}
void CanonicalizeIfOutputs(Node* n) {
auto new_indices = sort_indexes(n->outputs());
IfView(n).permuteOutputs(new_indices);
}
void CanonicalizeOutputs(Block* block) {
// We iterate in reverse since ordering of a node's outputs is dependent on
// the value use following it in the graph
for (Node* n : block->nodes().reverse()) {
switch (n->kind()) {
case prim::Loop: {
CanonicalizeLoopOutputs(n);
} break;
case prim::If: {
CanonicalizeIfOutputs(n);
} break;
}
// Since an a control flow node's outputs are after
// the values outputted within its blocks, first canonicalize
// the nodes outputs and then recurse on its blocks
for (Block* b : n->blocks()) {
CanonicalizeOutputs(b);
}
}
}
// Canonicalize a graph's control flow node outputs. We do this to solve jitter
// issues with outputs added to control flow nodes after the first pass of
// compilation in ir_emitter.cpp
void CanonicalizeOutputs(std::shared_ptr<Graph>& graph) {
CanonicalizeOutputs(graph->block());
}
} // namespace jit
} // namespace torch