1#ifndef HALIDE_BOUNDS_INFERENCE_H
2#define HALIDE_BOUNDS_INFERENCE_H
28 const std::vector<Function> &outputs,
30 const std::vector<std::vector<std::string>> &fused_groups,
31 const std::map<std::string, Function> &environment,
32 const std::map<std::pair<std::string, int>,
Interval> &func_bounds,
Base classes for Halide expressions (Halide::Expr) and statements (Halide::Internal::Stmt)
Defines the Interval class.
std::pair< std::vector< std::string >, std::vector< std::vector< std::string > > > realization_order(const std::vector< Function > &outputs, std::map< std::string, Function > &env)
Given a bunch of functions that call each other, determine an order in which to do the scheduling.
Stmt bounds_inference(Stmt, const std::vector< Function > &outputs, const std::vector< std::string > &realization_order, const std::vector< std::vector< std::string > > &fused_groups, const std::map< std::string, Function > &environment, const std::map< std::pair< std::string, int >, Interval > &func_bounds, const Target &target)
Take a partially lowered statement that includes symbolic representations of the bounds over which th...
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
@ Internal
Not visible externally, similar to 'static' linkage in C.
A class to represent ranges of Exprs.
A reference-counted handle to a statement node.
A struct representing a target machine and os to generate code for.