https://github.com/halide/Halide
Raw File
Tip revision: 1bb918fabaa99114d8e2dbc6e1c7b047c6acbc39 authored by Andrew Adams on 16 October 2023, 17:13:42 UTC
Merge remote-tracking branch 'origin/main' into abadams/mismatched_new_delete
Tip revision: 1bb918f
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