https://github.com/halide/Halide
Raw File
Tip revision: 20067bca187438aea778102d9437e58e0cc2944c authored by Dan Palermo on 09 June 2021, 23:36:43 UTC
Add more ways for DMA-BUF to fallback to libion.so
Tip revision: 20067bc
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