diff --git a/BUILD b/BUILD index 90b1e397..92d1a626 100644 --- a/BUILD +++ b/BUILD @@ -68,18 +68,19 @@ build_openroad( build_openroad( name = "lb_32x128", - io_constraints=":io-sram", - verilog_files=["test/rtl/lb_32x128.sv"], + io_constraints = ":io-sram", + mock_abstract = True, + mock_area = 1, + mock_stage = "floorplan", sdc_constraints = ":constraints-sram", - stage_args={ - "floorplan": [ - "CORE_UTILIZATION=40", - "CORE_ASPECT_RATIO=2", - ], - "place": ["PLACE_DENSITY=0.65"]}, - mock_abstract=True, - mock_stage="floorplan", - mock_area=1, + stage_args = { + "floorplan": [ + "CORE_UTILIZATION=40", + "CORE_ASPECT_RATIO=2", + ], + "place": ["PLACE_DENSITY=0.65"], + }, + verilog_files = ["test/rtl/lb_32x128.sv"], ) build_openroad( @@ -110,7 +111,10 @@ build_openroad( build_openroad( name = "L1MetadataArray", io_constraints = ":io", - macros = ["tag_array_64x184", "lb_32x128"], + macros = [ + "tag_array_64x184", + "lb_32x128", + ], sdc_constraints = ":test/constraints-top.sdc", stage_args = { "synth": ["SYNTH_HIERARCHICAL=1"],