Skip to content

Commit bd2d836

Browse files
authored
Merge pull request #7869 from The-OpenROAD-Project-staging/add_sroute_connect-mandatory-net-arg
pdn: mark -net mandatory for add_sroute_connect
2 parents 9a6e4d8 + 7f30b3f commit bd2d836

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/pdn/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,13 +247,13 @@ add_sroute_connect -net "VIN" -outerNet "VDD" -layers {met1 met4} -cut_pitch {2
247247
add_sroute_connect
248248
-cut_pitch pitch_value
249249
-layers list_of_2_layers
250+
-net net
250251
[-fixed_vias list_of_vias]
251252
[-insts inst]
252253
[-max_columns columns]
253254
[-max_rows rows]
254255
[-metalspaces metalspaces]
255256
[-metalwidths metalwidths]
256-
[-net net]
257257
[-ongrid ongrid_layers]
258258
[-outerNet outerNet]
259259
```
@@ -264,13 +264,13 @@ add_sroute_connect
264264
| ----- | ----- |
265265
| `-cut_pitch` | Distance between via cuts when the two layers are parallel, e.g., overlapping stdcell rails. (Default:200 200) |
266266
| `-layers` | The metal layers for vertical stripes within inner power ring. |
267+
| `-net` | The inner net where the power ring exists. |
267268
| `[-fixed_vias]` | List of fixed vias to be used to form the via stack. |
268269
| `[-insts]` | List of all the instances that contain the pin that needs to get connected with power ring. (Default:nothing) |
269270
| `[-max_columns]` | Maximum number of columns when adding arrays of vias. (Default:10) |
270271
| `[-max_rows]` | Maximum number of rows when adding arrays of vias. (Default:10) |
271272
| `[-metalspaces]` | Spacing of each metal layer. |
272273
| `[-metalwidths]` | Width for each metal layer. |
273-
| `[-net]` | The inner net where the power ring exists. |
274274
| `[-ongrid]` | List of intermediate layers in a via stack to snap onto a routing grid. |
275275
| `[-outerNet]` | The outer net where instances/pins that need to get connected exist. |
276276

src/pdn/src/pdn.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,10 +634,10 @@ proc add_pdn_connect { args } {
634634
$dont_use
635635
}
636636

637-
sta::define_cmd_args "add_sroute_connect" {[-net net] \
638-
[-outerNet outerNet] \
637+
sta::define_cmd_args "add_sroute_connect" {-net net \
639638
-layers list_of_2_layers \
640639
-cut_pitch pitch_value \
640+
[-outerNet outerNet] \
641641
[-fixed_vias list_of_vias] \
642642
[-max_rows rows] \
643643
[-max_columns columns] \

0 commit comments

Comments
 (0)