https://github.com/halide/Halide
Raw File
Tip revision: 784f0ece1b3c1b231875e4cf76a59f924815e736 authored by Derek Gerstmann on 06 February 2024, 20:09:34 UTC
Add bool_predicate_cast correctness test to verify bool conversion for
Tip revision: 784f0ec
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