https://github.com/halide/Halide
Raw File
Tip revision: fc4a3c65da381c1130d2ee7908c33ed5c67a3732 authored by Volodymyr Kysenko on 14 February 2023, 19:55:15 UTC
Generate PACKVRNR for i16(i32(i48x) >> wild_i32)
Tip revision: fc4a3c6
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