Reputation: 407
I am new to Yosys and synthesis but what I want to achieve is to get the number of gates and transistors after the design unit has undergone synthesis. How do I achieve that?
Upvotes: 0
Views: 545
Reputation: 1186
You can use stat
for gate count statistics, stat -lib
for area statistics for a liberty file, or stat -tech cmos
for transistor count using CMOS-type gates.
Upvotes: 1