This action will force synchronization from Gitee 极速下载/Halide, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#include <sstream>#include "AutoScheduleUtils.h"#include "IREquality.h"#include "IRMutator.h"#include "ImageParam.h"#include "Inline.h"#include "Param.h"#include "RegionCosts.h"#include "Simplify.h"#include "Var.h"namespace Halide {namespace Internal {using std::map;using std::set;using std::string;using std::vector;namespace {class SubstituteVarEstimates : public IRMutator {using IRMutator::visit;Expr visit(const Variable *var) override {if (var->param.defined() && var->param.is_buffer()) {// This is a var associated with an ImageParam object. This// should be something of the form XXX.min.[dim_index] or// XXX.extent.[dim_index]std::vector<std::string> v = split_string(var->name, ".");user_assert(v.size() >= 3);int d = string_to_int(v[v.size() - 1]);if (v[v.size() - 2] == "min") {Expr est = var->param.min_constraint_estimate(d);return est.defined() ? est : var;} else {internal_assert(v[v.size() - 2] == "extent");Expr est = var->param.extent_constraint_estimate(d);return est.defined() ? est : var;}} else if (var->param.defined() && !var->param.is_buffer() &&var->param.estimate().defined()) {// This is a var from a Param objectreturn var->param.estimate();} else {return var;}}};} // anonymous namespaceExpr substitute_var_estimates(Expr e) {if (!e.defined()) {return e;}return simplify(SubstituteVarEstimates().mutate(e));}Stmt substitute_var_estimates(Stmt s) {if (!s.defined()) {return s;}return simplify(SubstituteVarEstimates().mutate(s));}int string_to_int(const string &s) {std::istringstream iss(s);int i;iss >> i;user_assert(!iss.fail() && iss.get() == EOF) << "Unable to parse: " << s;return i;}Expr get_extent(const Interval &i) {if (!i.is_bounded()) {return Expr();}return simplify(i.max - i.min + 1);}Expr box_size(const Box &b) {Expr size = make_one(Int(64));for (size_t i = 0; i < b.size(); i++) {Expr extent = get_extent(b[i]);if (extent.defined() && size.defined()) {size *= extent;} else if (is_const_zero(extent)) {return make_zero(Int(64));} else {return Expr();}}return simplify(size);}void combine_load_costs(map<string, Expr> &result, const map<string, Expr> &partial) {for (const auto &kv : partial) {auto iter = result.find(kv.first);if (iter == result.end()) {result.emplace(kv.first, kv.second);} else {if (!iter->second.defined()) {continue;} else if (!kv.second.defined()) {iter->second = Expr();} else {iter->second = simplify(iter->second + kv.second);}}}}Definition get_stage_definition(const Function &f, int stage_num) {internal_assert(!f.has_extern_definition());if (stage_num == 0) {return f.definition();}internal_assert((int)f.updates().size() >= stage_num);return f.update(stage_num - 1);}vector<Dim> &get_stage_dims(const Function &f, int stage_num) {static vector<Dim> outermost_only ={{Var::outermost().name(), ForType::Serial, DeviceAPI::None, DimType::PureVar}};if (f.has_extern_definition()) {return outermost_only;}Definition def = get_stage_definition(f, stage_num);internal_assert(def.defined());return def.schedule().dims();}DimBounds get_stage_bounds(const Function &f, int stage_num, const DimBounds &pure_bounds) {DimBounds bounds;// Assume that the domain of the pure vars across all the update// definitions is the same. This may not be true and can result in// over estimation of the extent.for (const auto &b : pure_bounds) {bounds[b.first] = b.second;}if (!f.has_extern_definition()) {Definition def = get_stage_definition(f, stage_num);for (const auto &rvar : def.schedule().rvars()) {Expr lower = substitute_var_estimates(rvar.min);Expr upper = substitute_var_estimates(rvar.min + rvar.extent - 1);bounds.emplace(rvar.var, Interval(lower, upper));}}return bounds;}vector<DimBounds> get_stage_bounds(const Function &f, const DimBounds &pure_bounds) {vector<DimBounds> stage_bounds;size_t num_stages = f.updates().size() + 1;for (size_t s = 0; s < num_stages; s++) {stage_bounds.push_back(get_stage_bounds(f, s, pure_bounds));}return stage_bounds;}Expr perform_inline(Expr e, const map<string, Function> &env,const set<string> &inlines,const vector<string> &order) {if (inlines.empty()) {return e;}bool funcs_to_inline = false;Expr inlined_expr = e;do {funcs_to_inline = false;// Find all the function calls in the current expression.FindAllCalls find;inlined_expr.accept(&find);const set<string> &calls_unsorted = find.funcs_called;vector<string> calls(calls_unsorted.begin(), calls_unsorted.end());// Sort 'calls' based on the realization order in descending order// if provided (i.e. last to be realized comes first).if (!order.empty()) {std::sort(calls.begin(), calls.end(),[&order](const string &lhs, const string &rhs) {const auto &iter_lhs = std::find(order.begin(), order.end(), lhs);const auto &iter_rhs = std::find(order.begin(), order.end(), rhs);return iter_lhs > iter_rhs;});}// Check if any of the calls are in the set of functions to be inlined.// Inline from the last function to be realized to avoid extra// inlining works.for (const auto &call : calls) {if (inlines.find(call) != inlines.end()) {const Function &prod_func = env.at(call);// Impure functions cannot be inlined.internal_assert(prod_func.is_pure());// Inline the function call and set the flag to check for// further inlining opportunities.inlined_expr = inline_function(inlined_expr, prod_func);funcs_to_inline = true;break;}}} while (funcs_to_inline);return inlined_expr;}set<string> get_parents(Function f, int stage) {set<string> parents;if (f.has_extern_definition()) {internal_assert(stage == 0);for (const ExternFuncArgument &arg : f.extern_arguments()) {if (arg.is_func()) {string prod_name = Function(arg.func).name();parents.insert(prod_name);} else if (arg.is_expr()) {FindAllCalls find;arg.expr.accept(&find);parents.insert(find.funcs_called.begin(), find.funcs_called.end());} else if (arg.is_image_param() || arg.is_buffer()) {Buffer<> buf;if (arg.is_image_param()) {buf = arg.image_param.buffer();} else {buf = arg.buffer;}parents.insert(buf.name());}}} else {FindAllCalls find;Definition def = get_stage_definition(f, stage);def.accept(&find);parents.insert(find.funcs_called.begin(), find.funcs_called.end());}return parents;}void disp_regions(const map<string, Box> ®ions) {for (const auto ® : regions) {debug(0) << reg.first<< " -> "<< reg.second<< "\n";}}// If the cost of computing a Func is about the same as calling the Func,// inline the Func. Return true of any of the Funcs is inlined.bool inline_all_trivial_functions(const vector<Function> &outputs,const vector<string> &order,const map<string, Function> &env) {bool inlined = false;// The very last few functions in 'order' are the last to be realized in the// pipeline (the final producers) so there is no point in checking it.for (int i = 0; i < (int)order.size() - (int)outputs.size(); ++i) {bool is_output = false;for (const Function &f : outputs) {if (order[i] == f.name()) {is_output = true;break;}}if (is_output) {// Should not inline output Funcdebug(5) << "Skip inlining " << order[i] << " since it is an output\n";continue;}const Function &f1 = env.at(order[i]);if (is_func_trivial_to_inline(f1)) {inlined = true;debug(4) << "Function \"" << order[i] << "\" is trivial to inline\n";for (int j = i + 1; j < (int)order.size() - (int)outputs.size(); ++j) {internal_assert(order[i] != order[j]);const Function &f2 = env.at(order[j]);if (f2.has_extern_definition() && !f1.is_wrapper()) {debug(5) << "Skip inlining of function \"" << f1.name()<< "\" inside \"" << f2.name() << "\", because "<< "non-wrapper functions cannot be inlined inside "<< "extern functions.\n";} else {debug(5) << "Inline trivial function \"" << f1.name()<< "\" inside \"" << f2.name() << "\"\n";inline_function(f2, f1);}}}}return inlined;}// Determine if a Func (order[index]) is only consumed by another single Func// in element-wise manner. If it is, return the name of the consumer Func;// otherwise, return an empty string.string is_func_called_element_wise(const vector<string> &order, size_t index,const map<string, Function> &env) {const Function &f1 = env.at(order[index]);if (f1.has_extern_definition() || !f1.can_be_inlined()) {return "";}internal_assert(index < order.size());string caller = "";for (size_t i = index + 1; i < order.size(); ++i) {const Function &f2 = env.at(order[i]);if (f2.has_extern_definition()) {continue;}int num_stages = f2.updates().size() + 1;for (int s = 0; s < num_stages; ++s) {Definition def = get_stage_definition(f2, s);FindAllCalls find;def.accept(&find);if (find.funcs_called.count(f1.name())) {if (caller.empty()) {caller = f2.name();} else {// Found another caller of 'f1'return "";}}for (const auto &iter : find.call_args) {if (iter.first != f1.name()) {continue;}if (def.args().size() != iter.second.size()) {// It's not an element-wise accessreturn "";}for (size_t j = 0; j < iter.second.size(); ++j) {if (!equal(def.args()[j], iter.second[j])) {// It's not an element-wise accessreturn "";}}}}}return caller;}// Inline a Func if its values are only consumed by another single Func in// element-wise manner.bool inline_all_element_wise_functions(const vector<Function> &outputs,const vector<string> &order,const map<string, Function> &env) {bool inlined = false;// The very last few functions in 'order' are the last to be realized in the// pipeline (the final producers) so there is no point in checking it.for (int i = 0; i < (int)order.size() - (int)outputs.size(); ++i) {bool is_output = false;for (const Function &f : outputs) {if (order[i] == f.name()) {is_output = true;break;}}if (is_output) {// Should not inline output Funcdebug(5) << "Skip inlining " << order[i] << " since it is an output\n";continue;}string caller = is_func_called_element_wise(order, i, env);if (!caller.empty()) {inlined = true;debug(4) << "Inline function \"" << order[i] << "\" since it is called only by "<< caller << " in element-wise manner\n";internal_assert(order[i] != caller);inline_function(env.at(caller), get_element(env, order[i]));}}return inlined;}namespace {void check(const Expr &input, Expr expected) {Expr result = simplify(substitute_var_estimates(input));expected = simplify(expected);if (!equal(result, expected)) {internal_error<< "\nsubstitute_var_estimates() failure:\n"<< "Input: " << input << "\n"<< "Result: " << result << "\n"<< "Expected result: " << expected << "\n";}}} // anonymous namespacevoid propagate_estimate_test() {Param<int> p;p.set_estimate(10);ImageParam img(Int(32), 2);img.dim(0).set_estimate(-3, 33);img.dim(1).set_estimate(5, 55);Var x("x"), y("y");check(p + x + y, x + y + 10);check(img.dim(0).min() + img.dim(1).min() + x, x + 2);check(img.dim(0).extent() + img.dim(1).min() + img.dim(1).extent() * x, 55 * x + 38);std::cout << "Propagate estimate test passed" << std::endl;}} // namespace Internal} // namespace Halide
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。