https://github.com/halide/Halide
Raw File
Tip revision: d1c71d0547219266418ea410e090d7d82c41711f authored by Steven Johnson on 15 December 2021, 00:59:07 UTC
Merge branch 'master' into abadams/cse_in_unroll_split_tuples
Tip revision: d1c71d0
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