Skip to content

Commit

Permalink
Merge pull request #201 from mithro/buildifier-fixes
Browse files Browse the repository at this point in the history
Buildifier fixes
  • Loading branch information
QuantamHD authored Oct 4, 2023
2 parents b3d3a2a + 15d10e9 commit b874ecc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def com_google_googletest():
maybe(
http_archive,
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.zip"], # Release 2nd Aug 2023
urls = ["https://github.com/google/googletest/archive/refs/tags/v1.14.0.zip"], # Release 2nd Aug 2023
strip_prefix = "googletest-1.14.0",
sha256 = "1f357c27ca988c3f7c6b4bf68a9395005ac6761f034046e9dde0896e3aba00e4",
)
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
2 changes: 1 addition & 1 deletion vivado/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ vivado_write_bitstream = rule(
],
)

def vivado_flow(name, module, module_top, part_number, xilinx_env, tags = [], ip_blocks = [], with_xsa=False):
def vivado_flow(name, module, module_top, part_number, xilinx_env, tags = [], ip_blocks = [], with_xsa = False):
"""Runs the entire bitstream flow as a convenience macro.
Args:
Expand Down

0 comments on commit b874ecc

Please sign in to comment.