-
Notifications
You must be signed in to change notification settings - Fork 111
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
Various preprocessing fixes for Versal routing #1112
Closed
Closed
Conversation
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
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
This reverts commit 435152a. Signed-off-by: Eddie Hung <[email protected]>
initializeRouting(), which is after route{GlobalClock,Static}Nets() Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
…LK_MOD Signed-off-by: Eddie Hung <[email protected]>
…_DELAY Signed-off-by: Eddie Hung <[email protected]>
Emit warning if not enabled Signed-off-by: Eddie Hung <[email protected]>
….CLK Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Chris Lavin <[email protected]>
Signed-off-by: Chris Lavin <[email protected]>
Signed-off-by: Chris Lavin <[email protected]>
Signed-off-by: Chris Lavin <[email protected]>
Signed-off-by: Chris Lavin <[email protected]>
* Fix some tests, refactor for new APIs Signed-off-by: Chris Lavin <[email protected]> * Updates based on review feedback Signed-off-by: Chris Lavin <[email protected]> --------- Signed-off-by: Chris Lavin <[email protected]>
) * [TestNet] Improve testSetPinsMultiSrcStatic to track many sources Signed-off-by: Eddie Hung <[email protected]> * Add/improve test Signed-off-by: Eddie Hung <[email protected]> * Improve test Signed-off-by: Eddie Hung <[email protected]> --------- Signed-off-by: Eddie Hung <[email protected]>
Conflicts: src/com/xilinx/rapidwright/design/DesignTools.java
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]> Conflicts: src/com/xilinx/rapidwright/device/IntentCode.java
Signed-off-by: Eddie Hung <[email protected]>
This reverts commit 435152a. Signed-off-by: Eddie Hung <[email protected]>
initializeRouting(), which is after route{GlobalClock,Static}Nets() Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
…LK_MOD Signed-off-by: Eddie Hung <[email protected]>
…_DELAY Signed-off-by: Eddie Hung <[email protected]>
Emit warning if not enabled Signed-off-by: Eddie Hung <[email protected]>
….CLK Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Conflicts: src/com/xilinx/rapidwright/design/DesignTools.java
Conflicts: src/com/xilinx/rapidwright/design/DesignTools.java
Superseded by #1115 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
A number of changes necessary to infer missing
SitePinInst
s on fully unrouted Versal designs so that they may be routed.Also move the Versal-only CTRL sink RWRoute heuristic introduced in #1093's
determineRoutingTargets()
toinitializeRouting()
(after static routing has completed) in order to not prevent that router from completing.Built on top of #1102