https://github.com/halide/Halide
Raw File
Tip revision: 0c1de627387edce33122983f6ea580391b6a1244 authored by Steven Johnson on 15 November 2019, 01:36:28 UTC
Merge branch 'master' into tzumao-gradient-autoscheduler-bug
Tip revision: 0c1de62
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 "IR.h"
#include "Target.h"

namespace Halide {
namespace Internal {

/** 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