Skip to content

Commit

Permalink
Merge pull request #247 from antmicro/detailed_routing_report
Browse files Browse the repository at this point in the history
place_and_route: detailed_routing: Add reports
  • Loading branch information
mithro authored Dec 18, 2023
2 parents a779eb7 + e7013ce commit 7a510f1
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 7a510f1

Please sign in to comment.