Revision 1212efb878b5c42caedd4f37de4c0f6b3d19a12c authored by Steven Johnson on 06 January 2022, 00:46:45 UTC, committed by Steven Johnson on 06 January 2022, 00:46:45 UTC
1 parent b244a83
Raw File
UnrollLoops.h
#ifndef HALIDE_UNROLL_LOOPS_H
#define HALIDE_UNROLL_LOOPS_H

/** \file
 * Defines the lowering pass that unrolls loops marked as such
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Take a statement with for loops marked for unrolling, and convert
 * each into several copies of the innermost statement. I.e. unroll
 * the loop. */
Stmt unroll_loops(const Stmt &);

}  // namespace Internal
}  // namespace Halide

#endif
back to top