https://github.com/halide/Halide
Raw File
Tip revision: 576dda65d1a9a4ad292a55821960d66e74edbc04 authored by Steven Johnson on 23 August 2022, 17:01:17 UTC
Merge branch 'rootjalex/fix-sat-overflow' into srj/sat-fixes-exp
Tip revision: 576dda6
TrimNoOps.h
#ifndef TRIM_NO_OPS_H
#define TRIM_NO_OPS_H

/** \file
 * Defines a lowering pass that truncates loops to the region over
 * which they actually do something.
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Truncate loop bounds to the region over which they actually do
 * something. For examples see test/correctness/trim_no_ops.cpp */
Stmt trim_no_ops(Stmt s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top