https://github.com/halide/Halide
Raw File
Tip revision: 313d8bcb68880ec00e3597bcb8aab4a8888c7875 authored by Patricia Suriana on 05 October 2017, 22:55:00 UTC
Add shallow_lower_bound apps
Tip revision: 313d8bc
UniquifyVariableNames.h
#ifndef HALIDE_UNIQUIFY_VARIABLE_NAMES
#define HALIDE_UNIQUIFY_VARIABLE_NAMES

/** \file
 * Defines the lowering pass that renames all variables to have unique names.
 */

#include "IR.h"

namespace Halide {
namespace Internal {

/** Modify a statement so that every internally-defined variable name
 * is unique. This lets later passes assume syntactic equivalence is
 * semantic equivalence. */
Stmt uniquify_variable_names(Stmt s);

}
}


#endif
back to top