-
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
[RWRoute] Clock router for Versal architecture #1102
Merged
Merged
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: Wenhao Lin <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
WenhaoLin-AMD
force-pushed
the
clock_router
branch
from
November 15, 2024 04:42
9a16c35
to
7da71b3
Compare
Signed-off-by: Wenhao Lin <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Wenhao Lin <[email protected]>
Conflicts: test/src/com/xilinx/rapidwright/rwroute/TestGlobalSignalRouting.java
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Wenhao Lin <[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]>
eddieh-xlnx
reviewed
Nov 19, 2024
Signed-off-by: Eddie Hung <[email protected]>
eddieh-xlnx
reviewed
Nov 19, 2024
eddieh-xlnx
reviewed
Nov 19, 2024
WenhaoLin-AMD
changed the title
[RWRoute] Support clock routing on Versal devices
[RWRoute] Clock router for Versal architecture
Nov 22, 2024
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]>
eddieh-xlnx
reviewed
Nov 25, 2024
eddieh-xlnx
reviewed
Nov 25, 2024
Signed-off-by: Wenhao Lin <[email protected]>
clavin-xlnx
approved these changes
Nov 26, 2024
Co-authored-by: Chris Lavin <[email protected]> Signed-off-by: eddieh-xlnx <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
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.
The clock router for Versal architecture is based on the symmetric clock routing flow for UltraScale/UltraScale+. The main differences between them are listed below:
centroid
clock region (CR) of all target CRs, then route the clock buffer to an HROUTE node incentroid
.vrouteUp
(for the target CRs above thecentroid
) andvrouteDown
(for the target CRs below thecentroid
)VDISTR_LVL{1,2}
nodes to go up and down.Wire
objects, usingRouteNode.getWireConnections()
to search downhillNode
objects, usingNode.getAllDownhillNodes()
(sinceRouteNode.getWireConnections()
relies ontile.getWireConnections()
which doesn't work correctly on Versal devices, see #1096). Specifically, we replaceRouteNode
withRouterHelper.NodeWithPrev
.