Skip to content

Commit

Permalink
Small fix for formatting.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim 'mithro' Ansell <[email protected]>
  • Loading branch information
mithro committed Dec 22, 2023
1 parent d40ce30 commit 5cb8ed6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion place_and_route/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ place_and_route = rule(
"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."),
"enable_improve_placement": attr.bool(default=True, doc = "Enable/Disable improve_placement pass.")
"enable_improve_placement": attr.bool(default = True, doc = "Enable/Disable improve_placement pass."),
},
)
2 changes: 1 addition & 1 deletion place_and_route/private/detailed_routing.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def detailed_routing(ctx, open_road_info):

open_road_commands = timing_setup_command_struct.commands + [
"set_propagated_clock [all_clocks]",
"detailed_route -output_drc {} {}".format(output_drc.path, detailed_routing_args)
"detailed_route -output_drc {} {}".format(output_drc.path, detailed_routing_args),
]
density_fill_config = None
if open_road_configuration.density_fill_config:
Expand Down

0 comments on commit 5cb8ed6

Please sign in to comment.