https://github.com/halide/Halide
Raw File
Tip revision: 98b2f7431979562344b24bbace2ebf0512f7ca1e authored by Derek Gerstmann on 17 May 2023, 22:00:36 UTC
Change the feature version requirement to v1.3 (since v1.2 lacks the necessary support).
Tip revision: 98b2f74
DebugArguments.h
#ifndef HALIDE_INTERNAL_DEBUG_ARGUMENTS_H
#define HALIDE_INTERNAL_DEBUG_ARGUMENTS_H

#include "Target.h"

/** \file
 *
 * Defines a lowering pass that injects debug statements inside a
 * LoweredFunc. Intended to be used when Target::Debug is on.
 */

namespace Halide {
namespace Internal {

struct LoweredFunc;

/** Injects debug prints in a LoweredFunc that describe the target and
 * arguments. Mutates the given func. */
void debug_arguments(LoweredFunc *func, const Target &t);

}  // namespace Internal
}  // namespace Halide

#endif
back to top