Skip to content

Commit ae2a478

Browse files
committed
grt: fix missing references to overflow
Signed-off-by: Eder Monteiro <emrmonteiro@precisioninno.com>
1 parent c5c9095 commit ae2a478

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/grt/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ global_route
4040
| Switch Name | Description |
4141
| ----- | ----- |
4242
| `-guide_file` | Set the output guides file name (e.g., `route.guide`). |
43-
| `-congestion_iterations` | Set the number of iterations made to remove the overflow of the routing. The default value is `50`, and the allowed values are integers `[0, MAX_INT]`. |
43+
| `-congestion_iterations` | Set the number of iterations made to remove the congestion of the routing. The default value is `50`, and the allowed values are integers `[0, MAX_INT]`. |
4444
| `-congestion_report_file` | Set the file name to save the congestion report. The file generated can be read by the DRC viewer in the GUI (e.g., `report_file.rpt`). |
4545
| `-congestion_report_iter_step` | Set the number of iterations to report. The default value is `0`, and the allowed values are integers `[0, MAX_INT]`. |
4646
| `-grid_origin` | Set the (x, y) origin of the routing grid in DBU. For example, `-grid_origin {1 1}` corresponds to the die (0, 0) + 1 DBU in each x--, y- direction. |
@@ -295,7 +295,7 @@ global_route_debug
295295
| ----- | ----- |
296296
| `-st` | Show the Steiner Tree generated by `stt`. |
297297
| `-rst` | Show the Rectilinear Steiner Tree generated by `grt`. |
298-
| `-tree2D` | Show the Rectilinear Steiner Tree generated by `grt` after the overflow iterations. |
298+
| `-tree2D` | Show the Rectilinear Steiner Tree generated by `grt` after the congestion iterations. |
299299
| `-tree3D` | Show the 3D Rectilinear Steiner Tree post-layer assignment. |
300300
| `-edges3D` | Show each edge being rerouted post-layer assignment. |
301301
| `-saveSttInput` | File name to save `stt` input of a net. |

src/grt/src/GlobalRouter.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ proc read_global_route_segments { args } {
411411
sta::define_cmd_args "global_route_debug" {
412412
[-st] # Show the Steiner Tree generated by stt
413413
[-rst] # Show the Rectilinear Steiner Tree generated by FastRoute
414-
[-tree2D] # Show the Rectilinear Steiner Tree generated by FastRoute after overflow iterations
414+
[-tree2D] # Show the Rectilinear Steiner Tree generated by FastRoute after congestion iterations
415415
[-tree3D] # Show The Rectilinear Steiner Tree 3D after layer assignment
416416
[-edges3D] # Show edges being rerouted during maze route 3D
417417
[-saveSttInput file_name] # Save the stt input for a net on file_name

0 commit comments

Comments
 (0)