Skip to content

Commit ef6eb27

Browse files
authored
Merge pull request #1869 from Pinata-Consulting/flow-progress-tweaks
flow: tweak report_metrics and global route repair antenna progress messages
2 parents 366ff49 + e6e1b53 commit ef6eb27

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

flow/scripts/global_route.tcl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,16 @@ if { [info exists ::env(RECOVER_POWER)] } {
9292
report_power
9393
}
9494

95-
puts "\n=========================================================================="
96-
puts "check_antennas"
97-
puts "--------------------------------------------------------------------------"
98-
9995
if {![info exist env(SKIP_ANTENNA_REPAIR)]} {
96+
puts "Repair antennas..."
10097
repair_antennas -iterations 5
10198
check_placement -verbose
10299
check_antennas -report_file $env(REPORTS_DIR)/antenna.log
103100
}
104101

102+
puts "Estimate parasitics..."
105103
estimate_parasitics -global_routing
104+
106105
report_metrics 5 "global route"
107106

108107
# Write SDC to results with updated clock periods that are just failing.

flow/scripts/report_metrics.tcl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ proc report_metrics { stage when {include_erc true} {include_clock_skew true} }
1010
if {[info exists ::env(SKIP_REPORT_METRICS)] && $::env(SKIP_REPORT_METRICS) == 1} {
1111
return
1212
}
13+
puts "Report metrics stage $stage, $when..."
1314
set filename $::env(REPORTS_DIR)/${stage}_[string map {" " "_"} $when].rpt
1415
set fileId [open $filename w]
1516
close $fileId

0 commit comments

Comments
 (0)