https://github.com/halide/Halide
Raw File
Tip revision: 5ef1dbbc1fd8ad6a8d3b01b7c5b4c8bc3702ec63 authored by Steven Johnson on 19 August 2019, 22:10:44 UTC
auto_schedule_mat_mul: increase thresh from 3.5 -> 5.0 (Issue #4152)
Tip revision: 5ef1dbb
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