Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Mahintorabi <[email protected]>
  • Loading branch information
QuantamHD committed Oct 11, 2024
1 parent 246a31b commit 5a2fc33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions place_and_route/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ place_and_route = rule(
"core_padding_microns": attr.int(
mandatory = True,
),
"corner_avoidance": attr.string(
doc = "The distance (in microns) from each corner within which pin placement should be avoided.",
),
"create_die_shot": attr.bool(
default = False,
doc = "Exports a die shot image of the design. This requires qt support.",
Expand All @@ -113,13 +116,6 @@ place_and_route = rule(
"min_pin_distance": attr.string(
doc = "The minimum distance in microns, or tracks if `set_min_distance_in_tracks` is true, between pins around the outside of the block.",
),
"corner_avoidance": attr.string(
doc = "The distance (in microns) from each corner within which pin placement should be avoided.",
),
"set_min_distance_in_tracks": attr.bool(
default = False,
doc = "Change the units of `min_pin_distance` in tracks instead of microns",
),
"pin_placement_script": attr.label(
allow_single_file = [".tcl"],
doc = "See https://openroad.readthedocs.io/en/latest/main/src/ppl/README.html for syntax",
Expand All @@ -135,6 +131,10 @@ place_and_route = rule(
"sdc": attr.label(
allow_single_file = True,
),
"set_min_distance_in_tracks": attr.bool(
default = False,
doc = "Change the units of `min_pin_distance` in tracks instead of microns",
),
"sink_clustering_max_diameter": attr.int(
doc = "Clock tree synthesis sink group desired diamater in microns",
),
Expand Down

0 comments on commit 5a2fc33

Please sign in to comment.