https://github.com/halide/Halide
Raw File
Tip revision: 47a209da20fba46b2f8a6f98b0b79c74821cd27f authored by Andrew Adams on 05 October 2023, 16:16:26 UTC
Merge remote-tracking branch 'origin/main' into abadams/fix_7872
Tip revision: 47a209d
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