https://github.com/halide/Halide
Raw File
Tip revision: b8ad19f53f2ee18c4dbf719c98c6a279aca5cc0e authored by Andrew Adams on 11 August 2020, 19:12:57 UTC
Schedule last stage of stencil chain on GPU too
Tip revision: b8ad19f
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