https://github.com/halide/Halide
Raw File
Tip revision: 539766bda7aa99253e5432d43a6440f405379307 authored by Patricia Suriana on 30 March 2018, 22:14:27 UTC
Change Stmt/PrintUsesOfFunc to take into account use of function buffer
Tip revision: 539766b
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