Revision 11a60e785b0610dcf682bce1e9faf7f18c119128 authored by Volodymyr Kysenko on 01 September 2023, 18:30:00 UTC, committed by Volodymyr Kysenko on 01 September 2023, 18:30:00 UTC
1 parent 1096999
Raw File
Qualify.h
#ifndef HALIDE_QUALIFY_H
#define HALIDE_QUALIFY_H

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

#include "Expr.h"

namespace Halide {
namespace Internal {

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

}  // namespace Internal
}  // namespace Halide

#endif
back to top