-
Notifications
You must be signed in to change notification settings - Fork 759
Update grt, drt, rsz utilities to support RC correlation #7254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
maliberty
merged 7 commits into
The-OpenROAD-Project:master
from
The-OpenROAD-Project-staging:grt-rc-correlate
Jun 4, 2025
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
405e4d2
grt: Update layer lengths utility
povik 6367f72
grt: Fix via print in wirelength reports
povik 2ba7694
rsz: Add `report_net_parasitic` for debug
povik 446cd1f
grt: Fix method name typo
povik eb8cbad
rsz: Add resist summary for RC correlation
povik 3351fe4
drt: Add drt layer length utility
povik 5f78034
grt: Put back last mile patching in length utility
povik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| tool net total_wl #pins #vias li1_wl met1_wl met2_wl met3_wl met4_wl met5_wl | ||
| grt: clk 201.6 2 2 0 2 0 2 0 2 144 2 57.6 2 0 | ||
| drt: clk 184.95 2 5 0 5 0.215 5 0.185 5 134.97 5 49.58 5 0 | ||
| grt: net60 14.4 2 2 0 2 0 2 14.4 2 0 2 0 2 0 | ||
| drt: net60 13.39 2 3 0 3 3.77 3 9.62 3 0 3 0 3 0 | ||
| grt: clk 201.6 2 2 0 0 0 144 57.6 0 | ||
| drt: clk 184.95 2 5 0 0.215 0.185 134.97 49.58 0 | ||
| grt: net60 14.4 2 2 0 0 14.4 0 0 0 | ||
| drt: net60 13.39 2 3 0 3.77 9.62 0 0 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this in drt as it appears only use odb APIs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It makes sense to have
drt::route_layer_lengthsas an analogue togrt::route_layer_lengths. The latter does use grt APIs so it can't be an odb utility. Should I move the drt one into the odb submodule, or just somewhere else insrc/drt/srcwhere it's more decoupled from the router itself?