lnis-uofu / LSOracle

IDEA project source files
MIT License
97 stars 41 forks source link

Regarding generation of MIG views #38

Closed ratul619 closed 3 years ago

ratul619 commented 3 years ago

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 !

yashton commented 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.

ratul619 commented 3 years ago

Thanks Ashton. Will try.

ratul619 commented 3 years ago

Closing for now