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 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 :
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.
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 !
The text was updated successfully, but these errors were encountered: