Skip to content

Commit

Permalink
Merge pull request #382 from hdl/ppa
Browse files Browse the repository at this point in the history
Add macro breakdowns in PPA proto.
  • Loading branch information
QuantamHD authored Feb 25, 2025
2 parents 4f1b2bb + a1fcc7c commit caa84ee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion synthesis/power_performance_area.proto
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ message Area {
// Area only covered by inverters.
optional float area_inverters_um2 = 16;

// Area only covered by macros.
optional float area_macros_um2 = 17;

// The total number of standard cells used.
// Invariance:
// total_cells = buffers + timing_buffers + sequential + combinational;
Expand All @@ -91,7 +94,10 @@ message Area {
// The number of inverters.
optional int32 num_inverters = 15;

// Leaving out proto tags 17..19 for later use.
// The number of macros.
optional float num_macros = 18;

// Leaving out proto tag 19 for later use.

// Cell type mapping to fraction used in the area, e.g.
// {{ "svt: 0.7 }, { "lvt": 0.3}}
Expand Down

0 comments on commit caa84ee

Please sign in to comment.