https://github.com/halide/Halide
Raw File
Tip revision: 726b3898b9b20384f98d62d2ee3f38fe7d8324b9 authored by Ahmed S. Taei on 22 April 2019, 22:29:43 UTC
add a return value to main
Tip revision: 726b389
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