From 92a5bf059312801d48339ada3b8bafa4afb3bce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Harboe?= Date: Fri, 26 Jul 2024 07:56:36 +0200 Subject: [PATCH] tests: fix bazel build //:tag_array_64x184_report MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Øyvind Harboe --- BUILD | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/BUILD b/BUILD index 5798ef18..a71f2201 100644 --- a/BUILD +++ b/BUILD @@ -62,11 +62,12 @@ filegroup( SRAM_FLOOR_PLACE_ARGUMENTS = { "IO_CONSTRAINTS": "$(location :io-sram)", + "PLACE_PINS_ARGS": "-min_distance 2 -min_distance_in_tracks", } orfs_flow( name = "tag_array_64x184", - abstract_stage = "floorplan", + abstract_stage = "route", stage_args = { "synth": { "SDC_FILE": "$(location :constraints-sram)", @@ -76,7 +77,7 @@ orfs_flow( "CORE_ASPECT_RATIO": "2", }, "place": SRAM_FLOOR_PLACE_ARGUMENTS | { - "PLACE_DENSITY": "0.65", + "PLACE_DENSITY": "0.40", }, }, stage_sources = { @@ -135,7 +136,7 @@ orfs_flow( orfs_run( name = "tag_array_64x184_report", - src = ":tag_array_64x184_floorplan", + src = ":tag_array_64x184_route", outs = [ "final_clocks.webp.png", "final_ir_drop.webp.png",