https://github.com/halide/Halide
Raw File
Tip revision: e65431912624915b32b3a2f77de57924c4bc4668 authored by Steven Johnson on 14 February 2024, 19:56:49 UTC
Allow disabling of mutlithreading in simd op check
Tip revision: e654319
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