We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141763f commit 6308190Copy full SHA for 6308190
tests/util/run_graph_engine.cpp
@@ -30,18 +30,8 @@ std::vector<core::conversion::InputRange> toInputRangesDynamic(std::vector<at::T
30
std::vector<int64_t> min_range(opt);
31
std::vector<int64_t> max_range(opt);
32
33
- min_range[0] = ceil(opt[0]/2.0);
34
- max_range[0] = 2*opt[0];
35
-
36
- // for (int64_t each : min_range) {
37
- // std::cout << each << std::endl;
38
- // }
39
- // for (int64_t each : opt) {
40
41
42
- // for (int64_t each : max_range) {
43
44
+ min_range[1] = ceil(opt[1]/2.0);
+ max_range[1] = 2*opt[1];
45
46
a.push_back(core::conversion::InputRange(min_range, opt, max_range));
47
}
0 commit comments