https://github.com/halide/Halide
Raw File
Tip revision: 3f55f4028fd3e9352bb5b64713705b2729331aae authored by Steven Johnson on 05 June 2023, 20:30:31 UTC
Revert "[Hexagon] Fix compilation failures hexagon_remote (#7601)"
Tip revision: 3f55f40
LowerParallelTasks.h
#ifndef HALIDE_LOWER_PARALLEL_TASKS_H
#define HALIDE_LOWER_PARALLEL_TASKS_H

/** \file
 *
 * Support for platform independent lowering of Halide parallel and async mechanisms.
 * May eventually become a lowering pass.
 */

#include "IRVisitor.h"

namespace Halide {
namespace Internal {

Stmt lower_parallel_tasks(const Stmt &s, std::vector<LoweredFunc> &closure_implementations,
                          const std::string &name, const Target &t);

}  // namespace Internal
}  // namespace Halide

#endif  // HALIDE_LOWER_PARALLEL_TASKS_H
back to top