verilog-to-routing / vtr-verilog-to-routing

Verilog to Routing -- Open Source CAD Flow for FPGA Research
https://verilogtorouting.org
Other
1k stars 387 forks source link

Add visualization for flat routing in the VPR graphics #2740

Open vaughnbetz opened 3 hours ago

vaughnbetz commented 3 hours ago

We can visualize the routing between clusters, but can't visualize it within clusters (flat routing). There is some ability to visualize clustering decisions, and that also may allow us to see some of the routing inside clusters, but I believe the graphics for this are incomplete.

Proposed Behaviour

Investigate exactly how much you can see inside clusters right now, and make the routing visible.

Possible Solution

Draw the OPINs and IPINs and edges that represent the connectivity in the cluster, using the rr-graph (to show the rr-graph nodes and edges) and the routed nets (to show the used OPINs, IPINs, etc.). This would require significant updates to the code that can draw OPINs and IPINs to have it check if the OPINs and IPINs are inside the cluster, and pick reasonable drawing locations for everything based off the rr-graph and/or architecture file. If the OPINs and IPINs are drawn properly, and the edges between them can also be drawn properly, I think the various routing, rr-graph, congestion and timing views would all work, as they call these low-level drawing routines.

Context

We can perform flat routing, but can only partially visualize it. This would fix that.

vaughnbetz commented 3 hours ago

@ZohairZaidi : this is a potential big issue to fix, for when you want a challenge :).