Revision 47378ee5bd7cb304be9d61e0a636982c8a2623d0 authored by Steven Johnson on 29 January 2024, 01:28:13 UTC, committed by GitHub on 29 January 2024, 01:28:13 UTC
* Upgrade clang-format and clang-tidy to use LLVM 17

* trigger buildbots

* trigger buildbots

* trigger buildbots

* trigger buildbots

* Enable `bugprone-switch-missing-default-case`

...and fix existing warnings.

* Update .clang-tidy

* Update Parameter.cpp

* Update .clang-tidy

* Update .clang-tidy

* Update .clang-tidy

* Update .clang-tidy

* Update CPlusPlusMangle.cpp
1 parent 4b2d211
Raw File
Tracing.h
#ifndef HALIDE_TRACING_H
#define HALIDE_TRACING_H

/** \file
 * Defines the lowering pass that injects print statements when tracing is turned on
 */

#include <map>
#include <string>
#include <vector>

#include "Expr.h"

namespace Halide {

struct Target;

namespace Internal {

class Function;

/** Take a statement representing a halide pipeline, inject calls to
 * tracing functions at interesting points, such as
 * allocations. Should be done before storage flattening, but after
 * all bounds inference. */
Stmt inject_tracing(Stmt, const std::string &pipeline_name,
                    bool trace_pipeline,
                    const std::map<std::string, Function> &env,
                    const std::vector<Function> &outputs,
                    const Target &Target);

}  // namespace Internal
}  // namespace Halide

#endif
back to top