Hello, I was generating the global route congestio...
# openroad
j
Hello, I was generating the global route congestion file as per OR-flow-scripts, but the file does not actually save into reports directory. Meanwhile the global routing congestion is viewable (or generated) in GUI by clicking. But i figure these two might be separate. Does anyone have any idea what's going on?
global_route -guide_file $env(RESULTS_DIR)/route.guide \
-congestion_iterations 100 \
-congestion_report_file $env(REPORTS_DIR)/congestion.rpt \
-verbose
v
do
echo $env(REPORTS_DIR)
and see where it points
j
Using the default design_config (gcd/nangate45) i get
./reports/nangate45/gcd/base/congestion.rpt
I dived into the GlobalRouter code, it seems that congestion reports don't really generate unless there is an overflow. Is this intended?
v
Yes. If there is no congestion, the report file will be empty or not get generated by default
j
Understood, thanks!