https://github.com/halide/Halide
Raw File
Tip revision: 663469f5541c597b9ac742668ef1217006316b9d authored by Andrew Adams on 18 June 2021, 19:43:40 UTC
Naming/spelling improvements
Tip revision: 663469f
UnifyDuplicateLets.h
#ifndef HALIDE_UNIFY_DUPLICATE_LETS_H
#define HALIDE_UNIFY_DUPLICATE_LETS_H

/** \file
 * Defines the lowering pass that coalesces redundant let statements
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Find let statements that all define the same value, and make later
 * ones just reuse the symbol names of the earlier ones. */
Stmt unify_duplicate_lets(const Stmt &s);

}  // namespace Internal
}  // namespace Halide

#endif
back to top