-
Notifications
You must be signed in to change notification settings - Fork 504
updates for EST fixes #4271
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 4 commits into
The-OpenROAD-Project:master
from
The-OpenROAD-Project-staging:secure-est_check_delay_calc
Jun 1, 2026
Merged
updates for EST fixes #4271
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| export DESIGN_NICKNAME = gcd-ccs | ||
| export LIB_MODEL = CCS | ||
| include designs/asap7/gcd/config.mk | ||
|
|
||
| # Lower the core utilization from 65 (base asap7/gcd) to 60 | ||
| # due to a DPL failure at the global route stage due to extra | ||
| # buffers inserted by repair_timing | ||
| export CORE_UTILIZATION = 60 |
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
Submodule OpenROAD
updated
17 files
| +9 −1 | src/est/include/est/EstimateParasitics.h | |
| +61 −20 | src/est/src/EstimateParasitics.cpp | |
| +18 −72 | src/est/src/MakeWireParasitics.cpp | |
| +19 −0 | src/est/test/BUILD | |
| +27 −0 | src/est/test/CMakeLists.txt | |
| +287 −0 | src/est/test/cpp/TestEstimateParasitics.cc | |
| +26 −0 | src/est/test/cpp/TestEstimateParasitics.v | |
| +100 −0 | src/grt/src/fastroute/src/FastRoute.cpp | |
| +2 −2 | src/grt/test/est_rc3.ok | |
| +4 −4 | src/grt/test/est_rc4.ok | |
| +946 −1,391 | src/grt/test/est_rc4_corner0.spefok | |
| +946 −1,391 | src/grt/test/est_rc4_corner1.spefok | |
| +4 −2 | src/ram/README.md | |
| +12 −9 | src/ram/src/ram.tcl | |
| +7 −1 | src/rsz/include/rsz/Resizer.hh | |
| +1 −1 | src/sta | |
| +1 −0 | src/syn/src/elab/BUILD |
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 timing metrics show a significant degradation (e.g.,
cts__timing__setup__tnsdegrading from-773.0to-1260.0andglobalroute__timing__setup__tnsfrom-771.0to-1530.0). Per the repository guidelines, merging updates to regression baselines with significant degradation is acceptable only if there is an explicit agreement or tracking issue to address the underlying timing issue later. Please document this agreement or reference the tracking issue in the PR description.References
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.
This large degradations are explained by the fixes on the
estimate_parasiticscommand. For this design, which usesset_delay_calculator prima, wire delay was always zero due to a bug. Now we're properly estimating parasitics for it.