https://github.com/halide/Halide
Raw File
Tip revision: e65431912624915b32b3a2f77de57924c4bc4668 authored by Steven Johnson on 14 February 2024, 19:56:49 UTC
Allow disabling of mutlithreading in simd op check
Tip revision: e654319
RebaseLoopsToZero.h
#ifndef HALIDE_REBASE_LOOPS_TO_ZERO_H
#define HALIDE_REBASE_LOOPS_TO_ZERO_H

/** \file
 * Defines the lowering pass that rewrites loop mins to be 0.
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Rewrite the mins of most loops to 0. */
Stmt rebase_loops_to_zero(const Stmt &);

}  // namespace Internal
}  // namespace Halide

#endif
back to top