https://github.com/halide/Halide
Raw File
Tip revision: 8c9c8d46d8993a0cedbbf3be74cccb79b62ffb98 authored by = on 26 March 2019, 22:34:40 UTC
Update onnx_converter
Tip revision: 8c9c8d4
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