Closed ratul619 closed 3 years ago
There are several formats you can write out. For readable format, write_verilog is available. If you want to visualize the graph, write_dot will output a graphviz dot file.
Thanks Ashton. Will try.
Closing for now
Hi ,
I am trying to generate a MIG network after optimization in readable format ( verilog , other texts etc) What is the correct command to dump that after reading blif/aig format ?
For example for cout = xy + yz + zx, MIG network could be in format like below :
Y1 = MAJORITY (z , x_bar , y); Y2 = MAJORITY (y_bar , x_bar , z_bar) COUT = MAJORITY(x , Y1 , Y2);
Thanks !