https://github.com/halide/Halide
Raw File
Tip revision: f7d1a8f1acbc9315ae97fe5134d17e1fe8399bbb authored by Steven Johnson on 19 June 2020, 02:09:18 UTC
Merge branch 'master' into abadams/fix_cuda_mat_mul_assert
Tip revision: f7d1a8f
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