File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,24 @@ def detailed_routing(ctx, open_road_info):
74
74
"\n }" )
75
75
open_road_commands .append ("density_fill -rules {}" .format (density_fill_config .path ))
76
76
inputs .append (density_fill_config )
77
+
78
+ open_road_commands .append ("puts \" report_checks -path_delay min_max -format full_clock_expanded -fields {input_pin slew capacitance} -digits 3\" " )
79
+ open_road_commands .append ("report_checks -path_delay min_max -format full_clock_expanded -fields {input_pin slew capacitance} -digits 3" )
80
+
81
+ open_road_commands .append ("puts \" report_wns\" " )
82
+ open_road_commands .append ("report_wns" )
83
+
84
+ open_road_commands .append ("puts \" report_tns\" " )
85
+ open_road_commands .append ("report_tns" )
86
+
87
+ open_road_commands .append ("puts \" report_check_types -max_slew -max_capacitance -max_fanout -violators\" " )
88
+ open_road_commands .append ("report_check_types -max_slew -max_capacitance -max_fanout -violators" )
89
+
90
+ open_road_commands .append ("puts \" report_floating_nets -verbose\" " )
91
+ open_road_commands .append ("report_floating_nets -verbose" )
92
+
93
+ open_road_commands .append ("puts \" report_units\" " )
94
+ open_road_commands .append ("report_units" )
77
95
open_road_commands .append ("write_def {}" .format (routed_def .path ))
78
96
79
97
execution_requirements = {}
You can’t perform that action at this time.
0 commit comments