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
Hello i am looking for a way to display the clock tree on the Rsyn gui and i am also looking for a way to create a net physically so i can see where its vias all located and where it's wire start and end
The text was updated successfully, but these errors were encountered:
Unfortunately, we do not have a way to display the clock tree.
To create wires and vias for the nets you can do the use the following snippet: Rsyn::Session session; Rsyn::PhysicalDesign phDesign = session.getPhysicalDesign(); Rsyn::PhysicalNet phNet = phDesign.getPhysicalNet(logicNet); Rsyn::PhysicalRouting physicalRouting; physicalRouting.addVia(viaType, position); physicalRouting.addWire(routingLayer, startPos, endPos); phDesign.setNetRouting(phNet, routing);
After you do this, you should be able to see the net routing on the gui.
Hello i am looking for a way to display the clock tree on the Rsyn gui and i am also looking for a way to create a net physically so i can see where its vias all located and where it's wire start and end
The text was updated successfully, but these errors were encountered: