https://github.com/halide/Halide
Raw File
Tip revision: e83aee41218b35b8353bc7a576e7f02769717f9a authored by Steven Johnson on 23 October 2019, 23:18:18 UTC
Update mul_div_mod.cpp
Tip revision: e83aee4
RemoveExternLoops.h
#ifndef HALIDE_REMOVE_EXTERN_LOOPS
#define HALIDE_REMOVE_EXTERN_LOOPS

#include "IR.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(Stmt s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top