https://github.com/halide/Halide
Raw File
Tip revision: 76c47ad8e595b6f45a1e62f8e581545a2794eedf authored by Steven Johnson on 07 December 2022, 18:57:33 UTC
clang-tidy: add [[maybe-unused]] to the DECLARE_NO_INITMOD stubs.
Tip revision: 76c47ad
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