File: ir_cloner.cpp

package info (click to toggle)
pytorch 1.13.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 139,252 kB
  • sloc: cpp: 1,100,274; python: 706,454; ansic: 83,052; asm: 7,618; java: 3,273; sh: 2,841; javascript: 612; makefile: 323; xml: 269; ruby: 185; yacc: 144; objc: 68; lex: 44
file content (234 lines) | stat: -rw-r--r-- 6,068 bytes parent folder | download
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
#include <torch/csrc/jit/codegen/cuda/ir_cloner.h>

#include <torch/csrc/jit/codegen/cuda/fusion.h>
#include <torch/csrc/jit/codegen/cuda/ir_all_nodes.h>
#include <torch/csrc/jit/codegen/cuda/ir_builder.h>

namespace torch {
namespace jit {
namespace fuser {
namespace cuda {

IrCloner::IrCloner(IrContainer* container) : ir_container_(container) {}

Statement* IrCloner::clone(const Statement* statement) {
  if (statement == nullptr) {
    return nullptr;
  }

  // Have we already cloned this node?
  const auto it = clones_map_.find(statement);
  if (it != clones_map_.end()) {
    return it->second;
  } else {
    // Clone the new node, saving/restoring this->clone_
    // since the cloning can be reentrant
    auto saved_clone = clone_;
    handle(statement);
    auto new_node = clone_;
    clone_ = saved_clone;

    // The base cloning constructor (Statement) should have
    // registered the new node. Failure to do so indicates
    // that something went horribly wrong.
    TORCH_INTERNAL_ASSERT(new_node != nullptr);
    TORCH_INTERNAL_ASSERT(clones_map_[statement] == new_node);

    return new_node;
  }
}

void IrCloner::registerClone(const Statement* src, Statement* clone) {
  TORCH_CHECK(src != nullptr);
  TORCH_CHECK(clone != nullptr);
  TORCH_CHECK(clones_map_.insert({src, clone}).second);
}

void IrCloner::handle(const Statement* s) {
  OptInConstDispatch::handle(s);
}

void IrCloner::handle(const Val* v) {
  OptInConstDispatch::handle(v);
}

void IrCloner::handle(const Expr* e) {
  OptInConstDispatch::handle(e);
}

void IrCloner::handle(const TensorDomain* td) {
  clone_ = IrBuilder::clone(td, this);
}

void IrCloner::handle(const IterDomain* id) {
  clone_ = IrBuilder::clone(id, this);
}

void IrCloner::handle(const Bool* b) {
  clone_ = IrBuilder::clone(b, this);
}

void IrCloner::handle(const Double* d) {
  clone_ = IrBuilder::clone(d, this);
}

void IrCloner::handle(const Int* i) {
  clone_ = IrBuilder::clone(i, this);
}

void IrCloner::handle(const ComplexDouble* c) {
  clone_ = IrBuilder::clone(c, this);
}

void IrCloner::handle(const NamedScalar* named_scalar) {
  clone_ = IrBuilder::clone(named_scalar, this);
}

void IrCloner::handle(const TensorView* tv) {
  clone_ = IrBuilder::clone(tv, this);
}

void IrCloner::handle(const ARangeOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const UnaryOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const BinaryOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const TernaryOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const RNGOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const BroadcastOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const ReductionOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const GroupedReductionOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const WelfordOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const LoadStoreOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const MmaOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const TransposeOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const ExpandOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const ShiftOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const GatherOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const ViewAsScalar* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const ViewOp* op) {
  clone_ = IrBuilder::clone(op, this);
}

void IrCloner::handle(const Split* split) {
  clone_ = IrBuilder::clone(split, this);
}

void IrCloner::handle(const Merge* merge) {
  clone_ = IrBuilder::clone(merge, this);
}

void IrCloner::handle(const Swizzle2D* swizzle) {
  clone_ = IrBuilder::clone(swizzle, this);
}

TensorView* RecomputeTv::recompute(TensorView* tv) {
  FusionGuard fg(tv->fusion());

  // Disallow recomputation of inputs or outputs. User would have to be aware of
  // these changes and informed they happened somehow.
  TORCH_INTERNAL_ASSERT(
      !tv->isFusionInput(),
      "Cannot recompute buffers that are inputs of the fusion.");

  // Grab all the expressions used to generate the TensorView
  auto exprs = StmtSort::getExprs(tv->fusion(), {tv}, false);

  // Run the replicator
  RecomputeTv replicator(tv->fusion(), exprs);

  // Make const version of pointer for lookup
  const auto const_tv = tv;
  // Find the recomputed tensor from the cloner
  auto clone_it = replicator.clones_map_.find(const_tv);
  TORCH_INTERNAL_ASSERT(clone_it != replicator.clones_map_.end());
  auto cloned_val = clone_it->second;
  TORCH_INTERNAL_ASSERT(
      cloned_val->isA<TensorView>(),
      "Cloned value is somehow not a tensor view.");

  // Return the cloned value
  return cloned_val->as<TensorView>();
}

RecomputeTv::RecomputeTv(Fusion* fusion, std::vector<Expr*> exprs)
    : IrCloner(fusion), fusion_(fusion) {
  // Add inputs to the clones map to prevent cloning them.
  for (const auto inp : fusion->inputs()) {
    clones_map_[inp] = inp;
  }
  // Adds all scalar values to clones map to prevent cloning them
  for (const auto val : fusion->vals()) {
    if (val->getValType().value() == ValType::Scalar ||
        val->getValType().value() == ValType::NamedScalar) {
      clones_map_[val] = val;
    }
  }
  // Clone the expressions
  for (auto expr : exprs) {
    IrCloner::handle(expr);
  }
}

void RecomputeTv::handle(const TensorDomain* td) {
  // Make sure to recompute the history of the iteration domains, explicitly go
  // through the expressions and send them to IrCloner.
  auto exprs =
      StmtSort::getExprs(fusion_, {td->domain().begin(), td->domain().end()});

  for (auto expr : exprs) {
    IrCloner::handle(expr);
  }
  IrCloner::handle(td);
}

} // namespace cuda
} // namespace fuser
} // namespace jit
} // namespace torch