swh:1:snp:2c68c8bd649bf1bd2cf3bf7bd4f98d247b82b5dc
Raw File
Tip revision: 5c562b556ef0609d6ae6d839a7722c844e61319b authored by Jing Pu on 04 January 2019, 23:40:18 UTC
change the counter back to std::atomic.
Tip revision: 5c562b5
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(std::string filename, Stmt s);

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

}  // namespace Internal
}  // namespace Halide

#endif
back to top