-
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] Add "--lutPinSwapping" option #895
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
…t tile 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]>
Including the reserved sink node on unrouted connections 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]>
instead of .isExcluded() 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]>
Also update tests 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]>
Signed-off-by: Eddie Hung <[email protected]>
eddieh-xlnx
commented
Nov 30, 2023
eddieh-xlnx
commented
Nov 30, 2023
eddieh-xlnx
commented
Nov 30, 2023
eddieh-xlnx
commented
Nov 30, 2023
eddieh-xlnx
commented
Nov 30, 2023
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: eddieh-xlnx <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
…to rwroute_lutpinswap
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
As in #893 (comment), its "After" now serves as the "Before" here, on benchmarks from the FPGA24 Routing Contest: Before:
Total: 6391 seconds After:
Total: 5264 seconds (18% reduction) NOTE that not all designs show a saving:
And some statistics from Before:
After:
|
Signed-off-by: Eddie Hung <[email protected]>
Signed-off-by: Eddie Hung <[email protected]>
clavin-xlnx
approved these changes
Dec 1, 2023
eddieh-xlnx
commented
Dec 1, 2023
Signed-off-by: eddieh-xlnx <[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.
Depends on:
When routing connections to LUT pins, this new
--lutPinSwapping
option causes all pins on that LUT to be considered as targets too. When only thex6LUT
BEL is used, allA1-6
input pins can be used, but whenx5LUT
BEL is used onlyA1-5
can be.Once routing is complete,
LUTTools.swapLutPins()
is called to commit the swaps into the design. This step can be deferred by setting the system propertyrapidwright.rwroute.lutPinSwapping.deferIntraSiteRoutingUpdates
totrue
after whichLUTTools.updateLutPinSwapsFromPIPs()
is needed to bring the design back to a valid state.Current limitations:
H6LUT.A[1-6]
pins onSLICEM
serve as theWA
for all LUTs in that slice) are not allowed to be swapped (tracked by LUTTools.swapSingleLutPins() cannot swap H[1-6] when used as WA #901) --bnn.dcp
has an occurrence of this. To be clear --H[1-6]
that is not used as aWA
for any other LUT[A-G]
can still be swapped.LOCK_PINS
properties are not respected yet.