-
Notifications
You must be signed in to change notification settings - Fork 551
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
grt: fix handle of obstructions in single gcells #5703
Draft
eder-matheus
wants to merge
26
commits into
The-OpenROAD-Project:master
Choose a base branch
from
eder-matheus:grt_fix
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 10 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
165fd8b
grt: update ok files
eder-matheus ae9a8a9
grt: apply interval of obstructions to single gcells
eder-matheus b5f20b1
gpl: update ok files
eder-matheus f906305
test: update metrics limits
eder-matheus 693cfae
grt: avoid going out of bounds in edges
eder-matheus 3ca8219
grt: undo changes in FastRoute.cpp
eder-matheus 7ce8b01
grt: update applyObstructionAdjustment to handle obstructions inside …
eder-matheus c2244a0
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus 29db51a
grt: remove unneeded changes
eder-matheus 94f682e
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus 2884a4f
Merge branch 'master' into grt_fix
eder-matheus 4b4155e
grt: extend obstructions to adjacent grid points
eder-matheus d127a07
grt: remove redundant call for clearNetRoute
eder-matheus a50a04c
Merge branch 'master' into grt_fix
eder-matheus 54d0bcf
Merge branch 'master' into grt_fix
eder-matheus 71cbe11
Merge branch 'master' into grt_fix
eder-matheus 3dc2153
Revert "grt: extend obstructions to adjacent grid points"
eder-matheus eb58f73
grt: update ok files
eder-matheus ba4f0ec
test: update metrics limits
eder-matheus fb99068
gpl: update ok files
eder-matheus 4ffbace
Merge branch 'master' into grt_fix
eder-matheus d7ed583
Merge branch 'master' into grt_fix
eder-matheus 975c775
Merge branch 'master' into grt_fix
eder-matheus de97442
Merge branch 'master' into grt_fix
eder-matheus 9f35626
update metrics
eder-matheus a000f1e
Merge branch 'master' into grt_fix
eder-matheus 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 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 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 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 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 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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
I think generally not just for first_tile.getX() == last_tile.getX():
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.
I've tried this approach, but it is too agressive. A bunch of designs failed with high congestion. We are probably blocking pin access for macro pins and instance pins that are above layer 1.
My understanding is that blocking to the right/top is enought because the way FastRoute algorithm works, creating the edges in these two directions. Also, the test case used to validate this update is showing the correct congestion in layer 1 and we don't have guides in this layer anymore.