user2987773
user2987773

Reputation: 407

Yosys: Getting Gates /Transistor count

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

Answers (1)

gatecat
gatecat

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

Related Questions