-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert stmt_html output to use stmt_viz output #7516
Conversation
TL;DR: if we request `stmt_viz` without `assembly`, just generate the latter to a temp file that we dispose of later; this wasn't feasible before since we were previously requiring the assembly output to be generated with the same directory and basename as stmt_viz, but that was fixed.
Per discussion on #7507, this entirely removes the "classic" stmt_html output and replaces it with the "new" StmtToViz output. Using `compile_to_lowered_stmt` or requesting `stmt_html` will now always output the new output, and requesting `stmt_viz` output is no longer legal. (Note that this builds on top of #7515, which must be submitted first.) It's not clear to me whether #7507 (comment) is a blocker for this change, or a request to add back already-lost functionality.
It's a request to add back lost functionality. Things that used to be in codegen have crept into lowering (e.g. compiling shaders), making the .stmt output lower and lower level over time. We should roll it back a little to before those passes. |
OK, in that case we should probably be good to go in landing this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
StmtToHtml.h needs to be removed from the Makefile, otherwise looks good to me!
src/Generator.cpp
Outdated
bool has_assembly = std::find(emit_flags.begin(), emit_flags.end(), "assembly") != emit_flags.end(); | ||
|
||
user_assert(!has_stmt_viz || has_assembly) | ||
<< "Output flag `stmt_viz` requires the `assembly` flag to also be set."; | ||
user_assert(!has_stmt_html || has_assembly) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this still needed considering #7515 has landed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, good catch! Removed.
* Allow emitting `stmt_viz` without specifying `assembly` TL;DR: if we request `stmt_viz` without `assembly`, just generate the latter to a temp file that we dispose of later; this wasn't feasible before since we were previously requiring the assembly output to be generated with the same directory and basename as stmt_viz, but that was fixed. * Convert stmt_html output to use stmt_viz output Per discussion on halide#7507, this entirely removes the "classic" stmt_html output and replaces it with the "new" StmtToViz output. Using `compile_to_lowered_stmt` or requesting `stmt_html` will now always output the new output, and requesting `stmt_viz` output is no longer legal. (Note that this builds on top of halide#7515, which must be submitted first.) It's not clear to me whether halide#7507 (comment) is a blocker for this change, or a request to add back already-lost functionality. * Update Makefile * Update Generator.cpp
…halide#7520) * Don't accidentally embed .s files in .a files when emitting stmt_html Followup fix for halide#7516 * format
Per discussion on #7507, this entirely removes the "classic" stmt_html output and replaces it with the "new" StmtToViz output. Using
compile_to_lowered_stmt
or requestingstmt_html
will now always output the new output, and requestingstmt_viz
output is no longer legal.(Note that this builds on top of #7515, which must be submitted first.)
It's not clear to me whether #7507 (comment) is a blocker for this change, or a request to add back already-lost functionality.