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
While using EDIFNetlist methods to read the logical nets from a DCP, I encountered some differences in the total number of nets that I read directly using Tcl in Vivado, and am trying to find out why.
Design: the built-in CPU (HDL) example in Vivado.
I implemented it in Vivado and used one of the resulting "top_opt.dcp" DCPs for this experiment.
Steps:
In Vivado,
get_nets -hier
Using RapidWright,
Map<String,String> parent_net_map = edif_netlist.getParentNetMapNames();
for (String net : parent_net_map.keySet()) {
...
The logical nets returned by Tcl (96874 nets) include four nets that are missing from the EDIFNetlist output (96870 nets), namely:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
While using EDIFNetlist methods to read the logical nets from a DCP, I encountered some differences in the total number of nets that I read directly using Tcl in Vivado, and am trying to find out why.
Design: the built-in CPU (HDL) example in Vivado.
I implemented it in Vivado and used one of the resulting "top_opt.dcp" DCPs for this experiment.
Steps:
The logical nets returned by Tcl (96874 nets) include four nets that are missing from the EDIFNetlist output (96870 nets), namely:
Examining the EDIF file, the portion containing the "missing nets" looks like:
(net (rename fifo_dat_o_0_ "fifo_dat_o[0]") (joined ) )whereas a logical net that isn't missing is defined like this:
(net (rename fifo_dat_o_10_ "fifo_dat_o[10]") (joined (portref (member DO 53) (instanceref genblk5_0_fifo_36_bl_1_fifo_36_bl_1)) (portref I0 (instanceref wb_adr_o_10__i_1__0)) ) )Do the EDIF differences explain why EDIFNetlist doesn't seem to recognize some nets as such?
What is a good way to reconcile such differences?
Attaching the DCP and EDIF files in case they are helpful.
Thanks,
top_opt.zip
Harnhua
Beta Was this translation helpful? Give feedback.
All reactions