https://github.com/halide/Halide
Raw File
Tip revision: c62538d482dd2bb1cdec2b6c48e275bb5bce5358 authored by Steven Johnson on 08 November 2022, 22:25:13 UTC
Add a struct with type signatures to output, as compile-time-only alternative to #7149
Tip revision: c62538d
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