@@ -36,6 +36,7 @@ def benchmark(ctx, open_road_info):
36
36
"report_check_types -max_slew -max_capacitance -max_fanout -violators" ,
37
37
"report_design_area" ,
38
38
"report_cell_usage" ,
39
+ "report_clock_min_period" ,
39
40
]
40
41
41
42
cmd_outputs = []
@@ -58,18 +59,25 @@ def benchmark(ctx, open_road_info):
58
59
benchmark_path = benchmark_report .path
59
60
60
61
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 ),
62
63
"echo \" # proto-message: hdl.ppa.PowerPerformanceAreaProto\n \" >> {out};" .format (out = benchmark_path ),
63
64
]
64
65
awk_cmds = [
65
66
"area=$(cat {log} | awk '/Design area/ {{ print $3 }}');" ,
66
67
"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 }}');" ,
71
78
"wns=$(cat {log} | awk '/wns/ {{ print $2 }}');" ,
72
79
"tns=$(cat {log} | awk '/tns/ {{ print $2 }}');" ,
80
+ "cpl=$(cat {log} | awk '/period_min/ {{ cpl=$4; exit }} END {{ print cpl }}');" ,
73
81
"tot_pow=$(cat {log} | awk '/^Total / {{ total_power=$5 }} END {{ print total_power }}');" ,
74
82
"int_pow=$(cat {log} | awk '/^Total / {{ intern_power=$2 }} END {{ print intern_power }}');" ,
75
83
"swi_pow=$(cat {log} | awk '/^Total / {{ switch_power=$3 }} END {{ print switch_power }}');" ,
@@ -78,15 +86,23 @@ def benchmark(ctx, open_road_info):
78
86
textproto = proto .encode_text (
79
87
struct (
80
88
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}" ,
88
102
),
89
103
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))" ,
90
106
setup_wns_ps = "$(printf %.0f $(bc<<<$wns*1000))" ,
91
107
setup_tns_ps = "$(printf %.0f $(bc<<<$tns*1000))" ,
92
108
),
0 commit comments