https://github.com/halide/Halide
Raw File
Tip revision: 5a9d2ee41e105b9813cc2f3e4f19682420cf5e19 authored by Andrew Adams on 11 November 2023, 17:14:52 UTC
Merge remote-tracking branch 'origin/main' into abadams/delete_prepare_for_early_exit
Tip revision: 5a9d2ee
DebugToFile.h
#ifndef HALIDE_DEBUG_TO_FILE_H
#define HALIDE_DEBUG_TO_FILE_H

/** \file
 * Defines the lowering pass that injects code at the end of
 * every realization to dump functions to a file for debugging.  */

#include <map>
#include <vector>

#include "Expr.h"

namespace Halide {
namespace Internal {

class Function;

/** Takes a statement with Realize nodes still unlowered. If the
 * corresponding functions have a debug_file set, then inject code
 * that will dump the contents of those functions to a file after the
 * realization. */
Stmt debug_to_file(Stmt s,
                   const std::vector<Function> &outputs,
                   const std::map<std::string, Function> &env);

}  // namespace Internal
}  // namespace Halide

#endif
back to top