Halide  17.0.2
Halide compiler and libraries
LowerParallelTasks.h
Go to the documentation of this file.
1 #ifndef HALIDE_LOWER_PARALLEL_TASKS_H
2 #define HALIDE_LOWER_PARALLEL_TASKS_H
3 
4 /** \file
5  *
6  * Support for platform independent lowering of Halide parallel and async mechanisms.
7  * May eventually become a lowering pass.
8  */
9 
10 #include "IRVisitor.h"
11 
12 namespace Halide {
13 namespace Internal {
14 
15 Stmt lower_parallel_tasks(const Stmt &s, std::vector<LoweredFunc> &closure_implementations,
16  const std::string &name, const Target &t);
17 
18 } // namespace Internal
19 } // namespace Halide
20 
21 #endif // HALIDE_LOWER_PARALLEL_TASKS_H
This file defines the class FunctionDAG, which is our representation of a Halide pipeline, and contains methods to using Halide&#39;s bounds tools to query properties of it.
Stmt lower_parallel_tasks(const Stmt &s, std::vector< LoweredFunc > &closure_implementations, const std::string &name, const Target &t)
Not visible externally, similar to &#39;static&#39; linkage in C.
Defines the base class for things that recursively walk over the IR.