https://github.com/halide/Halide
Raw File
Tip revision: a9ab983cb84ce13b48cd0614b1654af89c665a0f authored by Z Stern on 10 June 2020, 06:20:01 UTC
Small wording improvements.
Tip revision: a9ab983
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