Halide
12.0.1
Halide compiler and libraries
|
Defines analyses to extract the functions called a function. More...
Go to the source code of this file.
Namespaces | |
Halide | |
This file defines the class FunctionDAG, which is our representation of a Halide pipeline, and contains methods to using Halide's bounds tools to query properties of it. | |
Halide::Internal | |
Functions | |
std::map< std::string, Function > | Halide::Internal::find_direct_calls (Function f) |
Construct a map from name to Function definition object for all Halide functions called directly in the definition of the Function f, including in update definitions, update index expressions, and RDom extents. More... | |
std::map< std::string, Function > | Halide::Internal::find_transitive_calls (Function f) |
Construct a map from name to Function definition object for all Halide functions called directly in the definition of the Function f, or indirectly in those functions' definitions, recursively. More... | |
void | Halide::Internal::populate_environment (Function f, std::map< std::string, Function > &env) |
Find all Functions transitively referenced by f in any way and add them to the given map. More... | |
Defines analyses to extract the functions called a function.
Definition in file FindCalls.h.