https://github.com/halide/Halide
Raw File
Tip revision: f5120c36d2da66a297721ee9876a7796c8da926f authored by Ahmed Taei on 13 June 2019, 21:12:52 UTC
Fix cuda nan_f32 value
Tip revision: f5120c3
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