Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions flow/scripts/save_images.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ select -name "clk*" -type Inst
save_image -resolution $resolution $::env(REPORTS_DIR)/final_clocks.webp
gui::clear_selections

gui::show_widget "Clock Tree Viewer"
foreach clock [get_clocks *] {
if { [llength [get_property $clock sources]] > 0 } {
set clock_name [get_name $clock]
Expand All @@ -70,6 +71,7 @@ foreach clock [get_clocks *] {
save_image -resolution $resolution $::env(REPORTS_DIR)/cts_${clock_name}_layout.webp
}
}
gui::hide_widget "Clock Tree Viewer"

# The resizer view: all instances created by the resizer grouped
gui::set_display_controls "Layers/*" visible false
Expand All @@ -92,4 +94,12 @@ save_image -resolution $resolution $::env(REPORTS_DIR)/final_resizer.webp
gui::clear_highlights -1
gui::clear_selections

# The routing congestion view
gui::set_display_controls "Instances/*" visible true
gui::set_display_controls "Instances/Physical/*" visible false
gui::set_display_controls "Nets/*" visible false
gui::set_display_controls "Heat Maps/Routing Congestion" visible true

save_image -resolution $resolution $::env(REPORTS_DIR)/final_congestion.webp

gui::restore_display_controls