File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,16 @@ if {[info exist env(FASTROUTE_TCL)]} {
1616 }
1717}
1818
19+ # The default behavior if the user didn't specify GLOBAL_ROUTE_ARGS is to
20+ # produce a drc report every 5 iterations.
21+ #
22+ # If GLOBAL_ROUTE_ARGS is specified, then we do only what the
23+ # GLOBAL_ROUTE_ARGS specifies.
1924global_route -guide_file $env(RESULTS_DIR) /route.guide \
2025 -congestion_report_file $env(REPORTS_DIR) /congestion.rpt \
21- {*}[expr {[info exists ::env(GLOBAL_ROUTE_ARGS)] ? $::env(GLOBAL_ROUTE_ARGS) : {-congestion_iterations 20 -verbose}}]
26+ {*}[expr {[info exists ::env(GLOBAL_ROUTE_ARGS)] ? $::env(GLOBAL_ROUTE_ARGS) : \
27+ {-congestion_iterations 20 -congestion_report_iter_step 5 -verbose}}]
28+
2229
2330set_propagated_clock [all_clocks]
2431estimate_parasitics -global_routing
You can’t perform that action at this time.
0 commit comments