Halide 19.0.0
Halide compiler and libraries
Loading...
Searching...
No Matches
ScheduleFunctions.h
Go to the documentation of this file.
1#ifndef HALIDE_INTERNAL_SCHEDULE_FUNCTIONS_H
2#define HALIDE_INTERNAL_SCHEDULE_FUNCTIONS_H
3
4/** \file
5 *
6 * Defines the function that does initial lowering of Halide Functions
7 * into a loop nest using its schedule. The first stage of lowering.
8 */
9
10#include <map>
11#include <string>
12#include <vector>
13
14#include "Expr.h"
15
16namespace Halide {
17
18struct Target;
19
20namespace Internal {
21
22class Function;
23
24/** Build loop nests and inject Function realizations at the
25 * appropriate places using the schedule. Returns a flag indicating
26 * whether memoization passes need to be run. */
27Stmt schedule_functions(const std::vector<Function> &outputs,
28 const std::vector<std::vector<std::string>> &fused_groups,
29 const std::map<std::string, Function> &env,
30 const Target &target,
31 bool &any_memoized);
32
33} // namespace Internal
34} // namespace Halide
35
36#endif
Base classes for Halide expressions (Halide::Expr) and statements (Halide::Internal::Stmt)
Stmt schedule_functions(const std::vector< Function > &outputs, const std::vector< std::vector< std::string > > &fused_groups, const std::map< std::string, Function > &env, const Target &target, bool &any_memoized)
Build loop nests and inject Function realizations at the appropriate places using the schedule.
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 reference-counted handle to a statement node.
Definition Expr.h:427
A struct representing a target machine and os to generate code for.
Definition Target.h:19