swh:1:snp:2c68c8bd649bf1bd2cf3bf7bd4f98d247b82b5dc
Raw File
Tip revision: d0dceebae832e1977187f1475176f79069dae06e authored by Patricia Suriana on 05 February 2017, 22:57:14 UTC
Comment out debug print
Tip revision: d0dceeb
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.
 */
EXPORT void print_to_html(std::string filename, Stmt s);

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

}}

#endif
back to top