https://github.com/halide/Halide
Raw File
Tip revision: 10e37cd7d2bc46dff2e5f0d1633fecaf7ec8965c authored by Andrew Adams on 09 March 2018, 20:51:23 UTC
Turns out Ravi's machine params were good
Tip revision: 10e37cd
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 */
EXPORT Stmt trim_no_ops(Stmt s);

}
}

#endif
back to top