forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jit_opt_limit.cpp
86 lines (73 loc) · 2.28 KB
/
jit_opt_limit.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
#include <cstdlib>
#include <iomanip>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
#include <ATen/core/function.h>
#include <c10/util/Exception.h>
#include <c10/util/StringUtil.h>
#include <torch/csrc/jit/api/function_impl.h>
#include <torch/csrc/jit/jit_opt_limit.h>
namespace torch {
namespace jit {
static std::unordered_map<std::string, int64_t>& passes_to_current_counter() {
static std::unordered_map<std::string, int64_t> passes_to_current_counter;
return passes_to_current_counter;
}
static int parseOptLimit(const std::string& opt_limit) {
try {
int64_t n = std::stoi(opt_limit);
return n;
} catch (...) {
return -1;
}
}
static std::unordered_map<std::string, int64_t> parseJITOptLimitOption(
const char* option) {
std::stringstream in_ss;
if (option) {
in_ss << option;
}
std::unordered_map<std::string, int64_t> passes_to_opt_limits;
std::string line;
while (std::getline(in_ss, line, ':')) {
if (line.empty()) {
continue;
}
auto index_at = line.find_last_of('=');
auto pass_name = line.substr(0, index_at);
pass_name = c10::detail::ExcludeFileExtension(pass_name);
auto opt_limit = parseOptLimit(line.substr(index_at + 1));
passes_to_opt_limits.insert({pass_name, opt_limit});
}
return passes_to_opt_limits;
}
bool opt_limit(const char* pass_name) {
static const char* opt_limit = std::getenv("PYTORCH_JIT_OPT_LIMIT");
// if nothing is provided, let's allow everything
if (!opt_limit) {
return true;
}
static const std::unordered_map<std::string, int64_t> passes_to_opt_limits =
parseJITOptLimitOption(opt_limit);
std::string pass{pass_name};
pass = c10::detail::StripBasename(pass);
pass = c10::detail::ExcludeFileExtension(pass);
auto opt_limit_it = passes_to_opt_limits.find(pass);
if (opt_limit_it == passes_to_opt_limits.end()) {
return true;
}
auto current_count_it = passes_to_current_counter().find(pass);
if (current_count_it == passes_to_current_counter().end()) {
passes_to_current_counter().insert({pass, 0});
}
current_count_it = passes_to_current_counter().find(pass);
if (current_count_it->second >= opt_limit_it->second) {
return false;
}
current_count_it->second++;
return true;
}
} // namespace jit
} // namespace torch