https://github.com/halide/Halide
Raw File
Tip revision: f165938e522a5efbf4a6d64577d0c9e0c9b42842 authored by Z Stern on 27 September 2017, 17:37:46 UTC
I was mistaken re: what the default constructor for Target does.
Tip revision: f165938
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