Skip to content

Commit

Permalink
P&R: Move remove_buffers pass to floorplan stage
Browse files Browse the repository at this point in the history
Move `remove_buffers` pass to run just after floorplan
initialization. It `remove_buffers` should only remove
clock/data buffers added by synthesis process.

Signed-off-by: Maciej Dudek <mdudek@antmicro.com>
  • Loading branch information
mtdudek committed Dec 18, 2023
1 parent a779eb7 commit 59290d4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions place_and_route/private/floorplan.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def init_floor_plan(ctx):
"source {tracks_file}".format(
tracks_file = open_road_configuration.tracks_file.path,
),
"remove_buffers",
"insert_tiecells {port} -prefix \"TIE_ONE_\"".format(
port = tieoneport,
),
Expand Down
1 change: 0 additions & 1 deletion place_and_route/private/global_placement.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ 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",
]

command_output = openroad_command(
Expand Down

0 comments on commit 59290d4

Please sign in to comment.