Skip to content

Commit

Permalink
variants: flattend synthesis with automatic macro placement
Browse files Browse the repository at this point in the history
Signed-off-by: Øyvind Harboe <[email protected]>
  • Loading branch information
oharboe committed Oct 30, 2024
1 parent 8fba4e8 commit 2fc91ff
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,24 @@ SWEEP = {
"floorplan": "BoomTile_synth",
},
},
"1": {
"description": "Flattend with automatic macro placement",
"variables": {
"SYNTH_HIERARCHICAL": "0",
# Macro placement fails with 0.24, tweak initial conditions
"PLACE_DENSITY": "0.25",
},
},
"2": {
"description": "Same as base, but with flattend synthesis",
"description": "Macro placement as base, but with flattend synthesis",
"variables": {
"SYNTH_HIERARCHICAL": "0",
"MACRO_PLACEMENT_TCL": "$(location write_macro_placement)",
},
"stage_sources": {"floorplan": ["write_macro_placement"]},
"previous_stage": {
"floorplan": "BoomTile_1_synth",
},
},
"3": {
"description": "Same as base, only with CTS timing repair enabled",
Expand Down Expand Up @@ -411,6 +422,19 @@ SWEEP = {
},
"stage_sources": {"floorplan": ["write_macro_placement"]},
},
"7": {
"description": "Flattend synthesis, CTS timing repair, timing driven placement and automatic macro placement",
"variables": {
"SYNTH_HIERARCHICAL": "0",
"SKIP_CTS_REPAIR_TIMING": "0",
"GPL_TIMING_DRIVEN": "1",
# Macro placement fails with 0.24, tweak initial conditions
"PLACE_DENSITY": "0.25",
},
"previous_stage": {
"floorplan": "BoomTile_1_synth",
},
},
}

BOOMTILE_VARIABLES = SKIP_REPORT_METRICS | FAST_BUILD_SETTINGS | {
Expand Down

0 comments on commit 2fc91ff

Please sign in to comment.