Skip to content

Commit

Permalink
Buildifier fixes to place_and_route files.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim 'mithro' Ansell <[email protected]>
  • Loading branch information
mithro committed Oct 4, 2023
1 parent 703c827 commit 15d10e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions place_and_route/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ place_and_route = rule(
"placement_density": attr.string(default = "0.69", doc = "When performing global placement this is how densely our cells should be packaged on the die parameter is (0-1]"),
"density_fill_config": attr.label(allow_single_file = True),
"sink_clustering_size": attr.int(doc = "Clock tree synthesis sink group size"),
"sink_clustering_max_diameter": attr.int(doc = "Clock tree synthesis sink group desired diamater in microns"),
"min_pin_distance": attr.string(doc = "The minimum distance in microns between pins around the outside of the block."),
"sink_clustering_max_diameter": attr.int(doc = "Clock tree synthesis sink group desired diamater in microns"),
"min_pin_distance": attr.string(doc = "The minimum distance in microns between pins around the outside of the block."),
},
)
2 changes: 1 addition & 1 deletion place_and_route/private/global_placement.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def global_placement(ctx, open_road_info):
pad_left = open_road_configuration.global_placement_cell_pad,
pad_right = open_road_configuration.global_placement_cell_pad,
),
"remove_buffers",
"remove_buffers",
]

command_output = openroad_command(
Expand Down
2 changes: 1 addition & 1 deletion place_and_route/private/place_pins.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def place_pins(ctx, open_road_info):
hor_layers = open_road_configuration.pin_horizontal_metal_layer,
ver_layers = open_road_configuration.pin_vertical_metal_layer,
min_pin_distance = "-min_distance {}".format(ctx.attr.min_pin_distance) if ctx.attr.min_pin_distance else "",
),
),
tapcell_command,
]

Expand Down

0 comments on commit 15d10e9

Please sign in to comment.