https://github.com/halide/Halide
Raw File
Tip revision: 53577e5376bc897a6ea0c16cac88b10d88e8ceac authored by Andrew Adams on 11 November 2023, 16:58:06 UTC
More targeted fix for gather instructions being slow on intel processors
Tip revision: 53577e5
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