-
Notifications
You must be signed in to change notification settings - Fork 505
add variable to enable repair_timing post global placement #4252
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
eder-matheus
merged 12 commits into
The-OpenROAD-Project:master
from
eder-matheus:place_repair_timing
Jun 11, 2026
Merged
Changes from 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
5d53427
add ENABLE_PLACE_REPAIR_TIMING var to enable post-gpl repair_timing
eder-matheus 2aadc2a
remove post-dpl repair timing target
eder-matheus 382eaed
add missing set_dont_use call
eder-matheus f2d71aa
use latest openroad
eder-matheus 492b06e
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus 6b73e3c
bump or
eder-matheus 0de8415
use latest openroad
eder-matheus 1931dc7
flow: update rules
github-actions[bot] 5dafa97
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus 8da7a93
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus cc84c44
Merge branch 'master' of https://github.com/The-OpenROAD-Project-priv…
eder-matheus 286e15e
flow: update rules
github-actions[bot] 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 was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
The comment and the
putsmessage indicate that both setup and hold violations are being repaired. However, the underlyingrepair_timingcommand (whichrepair_timing_helperwraps) defaults to fixing only setup violations unless the-holdflag is explicitly provided. Additionally, repairing hold violations pre-CTS (with an ideal clock) is generally discouraged as it can lead to excessive buffering based on inaccurate timing.If only setup repair is intended, it is better to be explicit and update the messages for clarity. If hold repair was truly intended, the appropriate flags should be passed to the helper, though this should be done with caution at this stage of the flow.
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.
The first part of this review is incorrect:
repair_timing_helperfixes hold violations even without the-holdflag.However, the second point is interesting. @precisionmoon do you think we should skip hold fixes at this stage?