https://github.com/halide/Halide
Raw File
Tip revision: 9990d6112bfd5d93c6e0919557be3b3c8542d393 authored by Dan Palermo on 20 March 2020, 14:35:38 UTC
Add SDK_ROOT control to hexagon_remote/Makefile
Tip revision: 9990d61
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 "IR.h"

namespace Halide {
namespace Internal {

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