From cc9bee5163774032398aca9d6b426aecd0ca4f14 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Fri, 8 Nov 2024 12:22:26 -0800 Subject: [PATCH] Skip another assert for Versal Signed-off-by: Eddie Hung --- src/com/xilinx/rapidwright/rwroute/RWRoute.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/xilinx/rapidwright/rwroute/RWRoute.java b/src/com/xilinx/rapidwright/rwroute/RWRoute.java index 56e7b8b48..9c0b26ea8 100644 --- a/src/com/xilinx/rapidwright/rwroute/RWRoute.java +++ b/src/com/xilinx/rapidwright/rwroute/RWRoute.java @@ -1839,7 +1839,9 @@ private void exploreAndExpand(ConnectionState state, RouteNode rnode) { case EXCLUSIVE_SINK_WEST: assert(childRNode.getType() != RouteNodeType.EXCLUSIVE_SINK_EAST || rnode.getType() == RouteNodeType.LOCAL_EAST); assert(childRNode.getType() != RouteNodeType.EXCLUSIVE_SINK_WEST || rnode.getType() == RouteNodeType.LOCAL_WEST); - assert(childRNode.getType() != RouteNodeType.EXCLUSIVE_SINK || rnode.getType() == RouteNodeType.LOCAL); + assert(childRNode.getType() != RouteNodeType.EXCLUSIVE_SINK || rnode.getType() == RouteNodeType.LOCAL || + // FIXME: + design.getSeries() == Series.Versal); if (!isAccessibleSink(childRNode, connection)) { continue; }