https://github.com/halide/Halide
Raw File
Tip revision: 6fb22ae2bf89ca644009d9954ba83938cd1fbb10 authored by Alex Reinking on 05 January 2022, 22:07:14 UTC
Bump version to 13.0.3
Tip revision: 6fb22ae
RemoveExternLoops.h
#ifndef HALIDE_REMOVE_EXTERN_LOOPS
#define HALIDE_REMOVE_EXTERN_LOOPS

#include "Expr.h"

/** \file
 * Defines a lowering pass that removes placeholder loops for extern stages.
 */

namespace Halide {
namespace Internal {

/** Removes placeholder loops for extern stages. */
Stmt remove_extern_loops(const Stmt &s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top