https://github.com/halide/Halide
Raw File
Tip revision: 8c505640d49d8f449a56a90e6599229401bd5462 authored by Steven Johnson on 14 February 2024, 17:09:50 UTC
Merge remote-tracking branch 'origin/abadams/strip_asserts_last' into srj/test8094
Tip revision: 8c50564
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