https://github.com/halide/Halide
Raw File
Tip revision: 04bd712277ad6fbb595661663d12cc1acc39b29d authored by Ahmed Taei on 05 March 2019, 23:04:43 UTC
Merge branch 'master' into ataei-implicit_lhs_vars
Tip revision: 04bd712
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 "IR.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