forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compilation_unit.h
351 lines (315 loc) · 11.4 KB
/
compilation_unit.h
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
#pragma once
#include <ATen/core/function.h>
#include <c10/util/Exception.h>
#include <torch/csrc/jit/api/function_impl.h>
#include <torch/csrc/jit/frontend/name_mangler.h>
#include <torch/csrc/jit/frontend/source_range.h>
#include <torch/csrc/jit/ir/ir.h>
#include <torch/csrc/jit/runtime/graph_executor.h>
#include <torch/csrc/Export.h>
#include <ATen/core/function_schema.h>
#include <ATen/core/qualified_name.h>
#include <c10/util/ArrayRef.h>
#include <optional>
#include <functional>
#include <memory>
#include <mutex>
#include <ostream>
#include <string>
#include <unordered_map>
#include <vector>
namespace torch::jit {
struct Def;
struct Property;
struct ClassDef;
struct SugaredValue;
struct Resolver;
using ResolverPtr = std::shared_ptr<Resolver>;
struct Self {
virtual ~Self() = default;
virtual std::shared_ptr<SugaredValue> makeSugared(Value* v) const = 0;
virtual ClassTypePtr getClassType() const = 0;
};
// A CompilationUnit is a list of named Functions
// with helper methods to iterate the list or invoke the function.
// Classes have a CompilationUnit holding the class methods,
// and Modules have a CompilationUnit holding the Functions that
// are used to implement their Methods
struct TORCH_API CompilationUnit {
enum class FunctionType { Method, Hook, PreHook };
// constructor that takes a set of functions to compile using the native
// resolver
explicit CompilationUnit(const std::string& source);
CompilationUnit() = default;
CompilationUnit& operator=(CompilationUnit&&) = default;
CompilationUnit(CompilationUnit&&) = default;
CompilationUnit& operator=(const CompilationUnit&) = delete;
CompilationUnit(const CompilationUnit&) = delete;
Function* find_function(const c10::QualifiedName& name) const {
auto it = dict_.find(name);
if (it == dict_.end()) {
return nullptr;
}
return functions_[it->second].get();
}
Function& get_function(const c10::QualifiedName& name) const {
if (auto r = find_function(name)) {
return *r;
}
TORCH_CHECK(false, "attempted to get undefined function ", name.name());
}
void set_optimized(bool o) {
TORCH_WARN(
"CompilationUnit::set_optimized() is deprecated and has no effect. "
"Please use setGraphExecutorOptimize()");
}
bool is_optimized() const {
TORCH_WARN(
"CompilationUnit::is_optimized() is deprecated and always returns true. "
"Please use getGraphExecutorOptimize()");
return true;
}
// for historic reasons, these are defined in ir_emitter.cpp
// Returns the list of Functions just defined.
std::vector<Function*> define(
const std::optional<c10::QualifiedName>& prefix,
const std::vector<Property>& properties,
const std::vector<ResolverPtr>& propResolvers,
const std::vector<Def>& definitions,
const std::vector<ResolverPtr>&
defResolvers, /* determines how we handle free
variables in each definition*/
// if non-null, the first argument to each def, is bound to this value
const Self* self,
// see [name mangling]
bool shouldMangle = false,
std::optional<size_t> operator_set_version = std::nullopt);
void define_hooks(
const std::optional<c10::QualifiedName>& prefix,
const std::vector<Def>& hookDefs,
const std::vector<ResolverPtr>& hookResolvers,
const std::vector<Def>& preHookDefs,
const std::vector<ResolverPtr>& preHookResolvers,
const Self* self,
bool shouldMangle = false);
// same as above but parse the definitions from source
// Returns the list of Functions just defined.
std::vector<Function*> define(
// prefix namespace to put all the defined functions into
const std::optional<c10::QualifiedName>& prefix,
const std::string& source,
const ResolverPtr& resolver,
const Self* self);
void define_interface(
const c10::QualifiedName& qualifiedName,
const ClassDef& classDef,
ResolverPtr rcb,
bool is_module = false);
Function* create_function(
c10::QualifiedName name,
std::shared_ptr<Graph> graph,
bool shouldMangle = false) {
if (shouldMangle) {
name = mangle(name);
}
auto fn = std::make_unique<GraphFunction>(
std::move(name), std::move(graph), nullptr);
auto ret = fn.get();
register_function(std::move(fn));
return ret;
}
std::vector<Function*> get_functions() const {
return fmap(functions_, [](const std::unique_ptr<Function>& fn) {
return fn.get();
});
}
/// Run a method from this compilation.
///
/// For example:
/// @code
/// IValue output = module->run("relu_script", a, b);
/// @endcode
///
/// To get a compile a module from a source string, see torch::jit::compile
///
/// @param method_name The name of the method to run
/// @param args Arguments to be passed to the method
/// @return An IValue containing the return value (or values if it is a tuple)
/// from the method
template <typename... Types>
IValue run_method(const c10::QualifiedName& method_name, Types&&... args) {
return get_function(method_name)({IValue(std::forward<Types>(args))...});
}
void drop_all_functions() {
dict_.clear();
functions_.clear();
}
/**
* Register a class as being owned by this compilation unit.
*/
void register_type(c10::NamedTypePtr namedType) {
// TODO: class types cannot be redefined because we have no way right now
// of invalidating their methods. NamedTuples are fine though, since they
// don't have methods.
TORCH_CHECK(
0 == classDict_.count(*namedType->name()),
"class '",
namedType->name()->qualifiedName(),
"' already defined.");
classes_.push_back(std::move(namedType));
classDict_[*classes_.back()->name()] = classes_.size() - 1;
};
c10::ClassTypePtr get_class(const c10::QualifiedName& name) const {
auto type = get_type(name);
if (!type) {
return nullptr;
}
return type->cast<c10::ClassType>();
}
c10::InterfaceTypePtr get_interface(const c10::QualifiedName& name) const {
auto type = get_type(name);
if (!type) {
return nullptr;
}
return type->cast<c10::InterfaceType>();
}
c10::TupleTypePtr get_named_tuple(const c10::QualifiedName& name) const {
for (const auto& cls : classes_) {
if (cls->name()->qualifiedName() == name.qualifiedName()) {
return cls->expect<TupleType>();
}
}
return nullptr;
}
c10::NamedTypePtr get_type(const c10::QualifiedName& name) const {
auto it = classDict_.find(name);
if (it == classDict_.end()) {
return nullptr;
}
return classes_[it->second];
}
// For testing: clear all Python-defined classes to ensure that unit tests
// have isolation.
void _clear_python_cu() {
// Delete all the associated class methods
for (const auto& type : classes_) {
if (auto cls = type->cast<ClassType>()) {
for (auto method : cls->methods()) {
// Tombstone the method in the compilation unit.
// Don't erase because the dict_
auto it = dict_.find(method->qualname());
if (it != dict_.end()) {
functions_[it->second] = nullptr;
// Erase in our big lookup table
dict_.erase(it);
}
}
// Classes can have multiple pointers to the same hook,
// need to make sure to not delete it twice
std::unordered_set<Function*> hooks_to_delete;
for (const auto& hook : cls->getForwardHooks()) {
hooks_to_delete.insert(hook);
}
for (const auto& pre_hook : cls->getForwardPreHooks()) {
hooks_to_delete.insert(pre_hook);
}
for (const auto& hook : hooks_to_delete) {
// Tombstone the hook in the compilation unit.
auto it = dict_.find(hook->qualname());
if (it != dict_.end()) {
functions_[it->second] = nullptr;
// Erase in our big lookup table
dict_.erase(it);
}
}
}
}
classes_.clear();
classDict_.clear();
}
// [Internal Only] Remove method.
// Note Used for freezing.
void unsafeRemoveMethod(const c10::QualifiedName& method_name) {
auto it = dict_.find(method_name);
TORCH_CHECK(
it != dict_.end(),
"method '",
method_name.qualifiedName(),
"' does not exist.");
functions_[it->second] = nullptr;
dict_.erase(it);
}
// [name mangling] All code objects must have a unique qualified name in a
// CompilationUnit. In Python, sometimes functions won't have unique qualified
// name (for example, nested functions). So we mangle Python functions to
// ensure that they are uniquely named.
//
// We also use mangling to distinguish different Module instances. Since each
// Module is a singleton class instance, different instances of the same
// Python Module will have different types but the same qualified name.
c10::QualifiedName mangle(const c10::QualifiedName& name) const {
auto mangled = name;
while (get_type(mangled) || find_function(mangled)) {
mangled = mangler_.mangle(mangled);
}
return mangled;
}
private:
std::unique_ptr<Function> define(
const std::optional<c10::QualifiedName>& prefix,
const Def& def,
const ResolverPtr& resolver,
const Self* self,
const std::unordered_map<std::string, Function*>& function_table,
bool shouldMangle = false,
FunctionType type = FunctionType::Method,
std::optional<size_t> version = std::nullopt) const;
// Define a property on \p self.
struct PropertyPair;
PropertyPair define_property(
const std::optional<c10::QualifiedName>& prefix,
const Property& prop,
const ResolverPtr& resolver,
const Self* self,
const std::unordered_map<std::string, Function*>& function_table,
bool shouldMangle = false) const;
Function& register_function(std::unique_ptr<Function> fn) {
TORCH_CHECK(
0 == dict_.count(fn->qualname().qualifiedName()),
"method '",
fn->qualname().qualifiedName(),
"' already defined.");
functions_.emplace_back(std::move(fn));
dict_[functions_.back()->qualname()] = functions_.size() - 1;
return *functions_.back();
}
std::vector<std::unique_ptr<Function>> functions_;
// for fast lookup
std::unordered_map<c10::QualifiedName, size_t> dict_;
std::unordered_map<c10::QualifiedName, size_t> classDict_;
// [class ownership] Right now there are two relationships between classes
// and compilation units:
// 1. Classes have compilation units internally that hold their methods.
// 2. On load, the TypePtrs of any imported classes are owned by the main
// module's compilation unit.
std::vector<c10::NamedTypePtr> classes_;
mutable NameMangler mangler_;
};
// An owning pointer to a Function. Just a pair of a raw Function ptr and it's
// owning CU. We need this because pybind requires a ref-counted way to refer to
// Functions.
struct StrongFunctionPtr {
StrongFunctionPtr(std::shared_ptr<CompilationUnit> cu, Function* function)
: cu_(std::move(cu)), function_(function) {
TORCH_INTERNAL_ASSERT(cu_);
TORCH_INTERNAL_ASSERT(function_);
}
std::shared_ptr<CompilationUnit> cu_;
Function* function_;
};
namespace script {
// We once had a `script::` namespace that was deleted. This is for backcompat
// of the public API; new code should not use this type alias.
using CompilationUnit = ::torch::jit::CompilationUnit;
} // namespace script
} // namespace torch::jit