Skip to content

Commit 5d0dc37

Browse files
committed
Add cell count area breakdowns, clock period, and critical path to place_and_route benchmarking.
Signed-off-by: Mike Inouye <[email protected]>
1 parent acf12a9 commit 5d0dc37

File tree

2 files changed

+35
-13
lines changed

2 files changed

+35
-13
lines changed

place_and_route/private/benchmark.bzl

+28-12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def benchmark(ctx, open_road_info):
3636
"report_check_types -max_slew -max_capacitance -max_fanout -violators",
3737
"report_design_area",
3838
"report_cell_usage",
39+
"report_clock_min_period",
3940
]
4041

4142
cmd_outputs = []
@@ -58,18 +59,25 @@ def benchmark(ctx, open_road_info):
5859
benchmark_path = benchmark_report.path
5960

6061
cmds = [
61-
"echo \"# proto-file: synthesis/power_performance_area.proto\" >> {out};".format(out = benchmark_path),
62+
"echo \"# proto-file: third_party/bazel_rules_hdl/synthesis/power_performance_area.proto\" >> {out};".format(out = benchmark_path),
6263
"echo \"# proto-message: hdl.ppa.PowerPerformanceAreaProto\n\" >> {out};".format(out = benchmark_path),
6364
]
6465
awk_cmds = [
6566
"area=$(cat {log} | awk '/Design area/ {{ print $3 }}');",
6667
"util=$(cat {log} | awk -F '[ %]' '/Design area/ {{ print $5 }}');",
67-
"combos=$(cat {log} | awk '/combinational cell/ {{ print 0 + $4 }}');",
68-
"flops=$(cat {log} | awk '/Sequential cell/ {{ print 0 + $3 }}');",
69-
"buffs=$(cat {log} | awk '/Buffer/ {{ buffer=$2; exit }} END {{ print 0 + buffers }}');",
70-
"tbuffs=$(cat {log} | awk '/Timing Repair Buffer/ {{ print 0 + $4 }}');",
68+
"combos=$(cat {log} | awk '/combinational cell/ {{ print $4 }}');",
69+
"combos_area=$(cat {log} | awk '/combinational cell/ {{ print $5 }}');",
70+
"seq=$(cat {log} | awk '/Sequential cell/ {{ print $3 }}');",
71+
"seq_area=$(cat {log} | awk '/Sequential cell/ {{ print $4 }}');",
72+
"buffs=$(cat {log} | awk '/Buffer/ {{ buffer=$2; exit }} END {{ print buffers }}');",
73+
"buffs_area=$(cat {log} | awk '/Buffer/ {{ buffer=$2; exit }} END {{ print buffers }}');",
74+
"tbuffs=$(cat {log} | awk '/Timing Repair Buffer/ {{ print $4 }}');",
75+
"tbuffs_area=$(cat {log} | awk '/Timing Repair Buffer/ {{ print $4 }}');",
76+
"inverters=$(cat {log} | awk '/Inverter/ {{ print $2 }}');",
77+
"inverters_area=$(cat {log} | awk '/Inverter/ {{ print $2 }}');",
7178
"wns=$(cat {log} | awk '/wns/ {{ print $2 }}');",
7279
"tns=$(cat {log} | awk '/tns/ {{ print $2 }}');",
80+
"cpl=$(cat {log} | awk '/period_min/ {{ cpl=$4; exit }} END {{ print cpl }}');",
7381
"tot_pow=$(cat {log} | awk '/^Total / {{ total_power=$5 }} END {{ print total_power }}');",
7482
"int_pow=$(cat {log} | awk '/^Total / {{ intern_power=$2 }} END {{ print intern_power }}');",
7583
"swi_pow=$(cat {log} | awk '/^Total / {{ switch_power=$3 }} END {{ print switch_power }}');",
@@ -78,15 +86,23 @@ def benchmark(ctx, open_road_info):
7886
textproto = proto.encode_text(
7987
struct(
8088
area = struct(
81-
cell_area_um2 = "$area",
82-
cell_utilization_fraction = "$util",
83-
num_total_cells = "$(($combos + $flops + $buffs + $tbuffs))",
84-
num_sequential = "$flops",
85-
num_combinational = "$combos",
86-
num_buffers = "$buffs",
87-
num_timing_buffers = "$tbuffs",
89+
cell_area_um2 = "${area:=0}",
90+
cell_utilization_fraction = "$(printf %.0f $(bc<<<$util/100.0))",
91+
area_sequentials_um2 = "${seq_area:=0}",
92+
area_combinationals_um2 = "${combos_area:=0}",
93+
area_buffers_um2 = "${buffs_area:=0}",
94+
area_timing_buffers_um2 = "${tbuffs_area:=0}",
95+
area_inverters_um2 = "${inverters_area:=0}",
96+
num_total_cells = "$((${combos:=0} + ${seq:=0} + ${buffs:=0} + ${tbuffs:=0} + ${inverters:=0}))",
97+
num_sequential = "${seq:=0}",
98+
num_combinational = "${combos:=0}",
99+
num_buffers = "${buffs:=0}",
100+
num_timing_buffers = "${tbuffs:=0}",
101+
num_inverters = "${inverters:=0}",
88102
),
89103
performance = struct(
104+
clock_period_ps = ctx.attr.clock_period if ctx.attr.clock_period else 0,
105+
critical_path_ps = "$(printf %.0f $(bc<<<$cpl*1000))",
90106
setup_wns_ps = "$(printf %.0f $(bc<<<$wns*1000))",
91107
setup_tns_ps = "$(printf %.0f $(bc<<<$tns*1000))",
92108
),

synthesis/power_performance_area.proto

+7-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ message Area {
6868
// Area only covered by sequentials.
6969
optional float area_sequentials_um2 = 9;
7070

71+
// Area only covered by inverters.
72+
optional float area_inverters_um2 = 16;
73+
7174
// The total number of standard cells used.
7275
// Invariance:
7376
// total_cells = buffers + timing_buffers + sequential + combinational;
@@ -85,7 +88,10 @@ message Area {
8588
// The number of sequential elements, such as flops.
8689
optional int32 num_sequential = 14;
8790

88-
// Leaving out proto tags 15..19 for later use.
91+
// The number of inverters.
92+
optional int32 num_inverters = 15;
93+
94+
// Leaving out proto tags 17..19 for later use.
8995

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

0 commit comments

Comments
 (0)