Skip to content

Commit

Permalink
place_and_route: detailed_routing: Add reports
Browse files Browse the repository at this point in the history
Signed-off-by: Pawel Czarnecki <pczarnecki@antmicro.com>
  • Loading branch information
lpawelcz committed Dec 15, 2023
1 parent a779eb7 commit e7013ce
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions place_and_route/private/detailed_routing.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,24 @@ def detailed_routing(ctx, open_road_info):
"\n}")
open_road_commands.append("density_fill -rules {}".format(density_fill_config.path))
inputs.append(density_fill_config)

open_road_commands.append("puts \"report_checks -path_delay min_max -format full_clock_expanded -fields {input_pin slew capacitance} -digits 3\"")
open_road_commands.append("report_checks -path_delay min_max -format full_clock_expanded -fields {input_pin slew capacitance} -digits 3")

open_road_commands.append("puts \"report_wns\"")
open_road_commands.append("report_wns")

open_road_commands.append("puts \"report_tns\"")
open_road_commands.append("report_tns")

open_road_commands.append("puts \"report_check_types -max_slew -max_capacitance -max_fanout -violators\"")
open_road_commands.append("report_check_types -max_slew -max_capacitance -max_fanout -violators")

open_road_commands.append("puts \"report_floating_nets -verbose\"")
open_road_commands.append("report_floating_nets -verbose")

open_road_commands.append("puts \"report_units\"")
open_road_commands.append("report_units")
open_road_commands.append("write_def {}".format(routed_def.path))

execution_requirements = {}
Expand Down

0 comments on commit e7013ce

Please sign in to comment.