https://github.com/halide/Halide
Raw File
Tip revision: cde9b7482315da9593927166e183859216a81ae2 authored by Andrew Adams on 28 October 2017, 23:11:45 UTC
Merge pull request #2490 from halide/update-matmul
Tip revision: cde9b74
Qualify.h
#ifndef HALIDE_QUALIFY_H
#define HALIDE_QUALIFY_H

/** \file
 *
 * Defines methods for prefixing names in an expression with a prefix string.
 */

#include "IR.h"

namespace Halide {
namespace Internal {

/** Prefix all variable names in the given expression with the prefix string. */
Expr qualify(const std::string &prefix, Expr value);

}
}


#endif
back to top