Skip to content

Commit

Permalink
WIP: BUILD.bazel: Update L1MetadataArray
Browse files Browse the repository at this point in the history
Signed-off-by: Illia Vysochyn <[email protected]>
  • Loading branch information
ivysochyn committed Jul 31, 2024
1 parent 49f32c0 commit 3b3c05b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
10 changes: 4 additions & 6 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -203,29 +203,27 @@ orfs_flow(
macros = ["tag_array_64x184_generate_abstract"],
stage_args = {
"synth": {
"SDC_FILE": "$(location :test/constraints-top.sdc)",
"SYNTH_HIERARCHICAL": "1",
"SDC_FILE": "$(location :constraints-sram)",
},
"floorplan": {
"CORE_UTILIZATION": "3",
"RTLMP_FLOW": "True",
"CORE_MARGIN": "2",
"IO_CONSTRAINTS": "$(location :io)",
"MACRO_PLACE_HALO": "30 30",
},
"place": {
"PLACE_DENSITY": "0.20",
"PLACE_PINS_ARGS": "-annealing",
"IO_CONSTRAINTS": "$(location :io)",
},
},
stage_sources = {
"synth": [":constraints-sram"],
"floorplan": [":io"],
"place": [":io"],
"synth": [":test/constraints-top.sdc"],
},
verilog_files = ["//rtl:L1MetadataArray.sv"],
)


boom_tile_macros = \
[x + "_generate_abstract" for x in boom_tile_rams] + \
[x + "_generate_abstract" for x in boom_regfile_rams] + \
Expand Down
5 changes: 5 additions & 0 deletions test/constraints-top.sdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set clk_name clock
set clk_port_name clock
set clk_period 2000

source $env(PLATFORM_DIR)/constraints.sdc

0 comments on commit 3b3c05b

Please sign in to comment.