https://github.com/halide/Halide
Raw File
Tip revision: cc613924c7ea913f2bc31debc9f55316fbad40d9 authored by Steven Johnson on 15 April 2020, 17:21:10 UTC
Add HALIDE_STATIC_CONSTEXPR
Tip revision: cc61392
StmtToHtml.h
#ifndef HALIDE_STMT_TO_HTML
#define HALIDE_STMT_TO_HTML

/** \file
 * Defines a function to dump an HTML-formatted stmt to a file.
 */

#include "Module.h"

namespace Halide {
namespace Internal {

/**
 * Dump an HTML-formatted print of a Stmt to filename.
 */
void print_to_html(const std::string &filename, const Stmt &s);

/** Dump an HTML-formatted print of a Module to filename. */
void print_to_html(const std::string &filename, const Module &m);

}  // namespace Internal
}  // namespace Halide

#endif
back to top