Skip to content

Commit

Permalink
[RouterHelper] invertPossibleGndPinsToVccPins() to use correct sitewire
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Hung <eddie.hung@amd.com>
  • Loading branch information
eddieh-xlnx committed Nov 21, 2024
1 parent 618f1ce commit 4e45bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/xilinx/rapidwright/rwroute/RouterHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public static Set<SitePinInst> invertPossibleGndPinsToVccPins(Design design,
}
Collection<Cell> connectedCells = DesignTools.getConnectedCells(spiBelPin, si);
if (connectedCells.isEmpty()) {
for (BELPin belPin : si.getSiteWirePins(siteWireName)) {
for (BELPin belPin : si.getSiteWirePins(spiBelPin.getSiteWireName())) {
if (belPin.isSitePort()) {
continue;
}
Expand Down

0 comments on commit 4e45bc0

Please sign in to comment.