You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to route an adder/subtractor DCP using RWRoute. However, it is failing in the Design.routeSites() function, saying it is unable to route a Carry8 DI0 to a site pin.
Here is my code:
package com.xilinx.rapidwright.llm;
import com.xilinx.rapidwright.design.Design;
import com.xilinx.rapidwright.rwroute.RWRoute;
public class RippleCarryTest {
public static void main(String[] args) {
Design d = Design.readCheckpoint("ripple_carry_sub_add-0.dcp");
d.routeSites();
d=RWRoute.routeDesignFullNonTimingDriven(d);
d.writeCheckpoint("ripple_carry_sub_add-0.routed.dcp");
}
}
I am trying to route an adder/subtractor DCP using RWRoute. However, it is failing in the Design.routeSites() function, saying it is unable to route a Carry8 DI0 to a site pin.
Here is my code:
Here is the corresponding DCP (renamed to .zip): ripple_carry_sub_add-0.zip
The text was updated successfully, but these errors were encountered: