Skip to content

Commit 2813ba3

Browse files
authored
Merge pull request The-OpenROAD-Project#3249 from Pinata-Consulting/docs-place-density-color
Docs place density color
2 parents edf3d6b + a93e887 commit 2813ba3

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

docs/user/FlowVariables.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ configuration file.
128128
| <a name="MIN_BUF_CELL_AND_PORTS"></a>MIN_BUF_CELL_AND_PORTS| Used to insert a buffer cell to pass through wires. Used in synthesis.| | |
129129
| <a name="MIN_ROUTING_LAYER"></a>MIN_ROUTING_LAYER| The lowest metal layer name to be used in routing.| | |
130130
| <a name="PDN_TCL"></a>PDN_TCL| File path which has a set of power grid policies used by pdn to be applied to the design, such as layers to use, stripe width and spacing to generate the actual metal straps.| | |
131-
| <a name="PLACE_DENSITY"></a>PLACE_DENSITY| The desired placement density of cells. It reflects how spread the cells would be on the core area. 1.0 = closely dense. 0.0 = widely spread.| | |
131+
| <a name="PLACE_DENSITY"></a>PLACE_DENSITY| The desired average placement density of cells: 1.0 = dense, 0.0 = widely spread. The intended effort is also communicated by this parameter. Use a low value for faster builds and higher value for better quality of results. If a too low value is used, the placer will not be able to place all cells and a recommended minimum placement density can be found in the logs. A too high value can lead to excessive runtimes, even timeouts and subtle failures in the flow after placement, such as in CTS or global routing when timing repair fails. The default is platform specific.| | |
132132
| <a name="PLACE_DENSITY_LB_ADDON"></a>PLACE_DENSITY_LB_ADDON| Check the lower boundary of the PLACE_DENSITY and add PLACE_DENSITY_LB_ADDON if it exists.| | |
133133
| <a name="PLACE_PINS_ARGS"></a>PLACE_PINS_ARGS| Arguments to place_pins| | |
134134
| <a name="PLACE_SITE"></a>PLACE_SITE| Placement site for core cells defined in the technology LEF file.| | |
@@ -143,8 +143,6 @@ configuration file.
143143
| <a name="REMOVE_CELLS_FOR_EQY"></a>REMOVE_CELLS_FOR_EQY| String patterns directly passed to write_verilog -remove_cells <> for equivalence checks.| | |
144144
| <a name="REPAIR_PDN_VIA_LAYER"></a>REPAIR_PDN_VIA_LAYER| Remove power grid vias which generate DRC violations after detailed routing.| | |
145145
| <a name="REPORT_CLOCK_SKEW"></a>REPORT_CLOCK_SKEW| Report clock skew as part of reporting metrics, starting at CTS, before which there is no clock skew. This metric can be quite time-consuming, so it can be useful to disable.| 1| |
146-
| <a name="RESYNTH_AREA_RECOVER"></a>RESYNTH_AREA_RECOVER| Enable re-synthesis for area reclaim.| 0| |
147-
| <a name="RESYNTH_TIMING_RECOVER"></a>RESYNTH_TIMING_RECOVER| Enable re-synthesis for timing optimization.| 0| |
148146
| <a name="ROUTING_LAYER_ADJUSTMENT"></a>ROUTING_LAYER_ADJUSTMENT| Adjusts routing layer capacities to manage congestion and improve detailed routing. High values ease detailed routing but risk excessive detours and long global routing times, while low values reduce global routing failure but can complicate detailed routing. The global routing running time normally reduces dramatically (entirely design specific, but going from hours to minutes has been observed) when the value is low (such as 0.10). Sometimes, global routing will succeed with lower values and fail with higher values. Exploring results with different values can help shed light on the problem. Start with a too low value, such as 0.10, and bisect to value that works by doing multiple global routing runs. As a last resort, `make global_route_issue` and using the tools/OpenROAD/etc/deltaDebug.py can be useful to debug global routing errors. If there is something specific that is impossible to route, such as a clock line over a macro, global routing will terminate with DRC errors routes that could have been routed were it not for the specific impossible routes. deltaDebug.py should weed out the possible routes and leave a minimal failing case that pinpoints the problem.| 0.5| |
149147
| <a name="RTLMP_AREA_WT"></a>RTLMP_AREA_WT| Weight for the area of the current floorplan.| 0.1| |
150148
| <a name="RTLMP_ARGS"></a>RTLMP_ARGS| Overrides all other RTL macro placer arguments.| | |
@@ -258,8 +256,6 @@ configuration file.
258256
- [PLACE_DENSITY_LB_ADDON](#PLACE_DENSITY_LB_ADDON)
259257
- [PLACE_SITE](#PLACE_SITE)
260258
- [REMOVE_ABC_BUFFERS](#REMOVE_ABC_BUFFERS)
261-
- [RESYNTH_AREA_RECOVER](#RESYNTH_AREA_RECOVER)
262-
- [RESYNTH_TIMING_RECOVER](#RESYNTH_TIMING_RECOVER)
263259
- [RTLMP_AREA_WT](#RTLMP_AREA_WT)
264260
- [RTLMP_ARGS](#RTLMP_ARGS)
265261
- [RTLMP_BOUNDARY_WT](#RTLMP_BOUNDARY_WT)

flow/scripts/variables.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,15 @@ PLACE_PINS_ARGS:
380380
default: ""
381381
PLACE_DENSITY:
382382
description: >
383-
The desired placement density of cells. It reflects how spread the cells
384-
would be on the core area. 1.0 = closely dense. 0.0 = widely spread.
383+
The desired average placement density of cells: 1.0 = dense, 0.0 = widely spread.
384+
385+
The intended effort is also communicated by this parameter. Use a low value for faster builds and higher value for better quality of results.
386+
387+
If a too low value is used, the placer will not be able to place all cells and a recommended minimum placement density can be found in the logs.
388+
389+
A too high value can lead to excessive runtimes, even timeouts and subtle failures in the flow after placement, such as in CTS or global routing when timing repair fails.
390+
391+
The default is platform specific.
385392
stages:
386393
- floorplan
387394
- place

0 commit comments

Comments
 (0)