Skip to content

Commit acf12a9

Browse files
authored
Fix place_and_route() benchmarking when timing repair inverters are used. (#351)
Signed-off-by: Mike Inouye <[email protected]>
1 parent 22164ac commit acf12a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

place_and_route/private/benchmark.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def benchmark(ctx, open_road_info):
6767
"combos=$(cat {log} | awk '/combinational cell/ {{ print 0 + $4 }}');",
6868
"flops=$(cat {log} | awk '/Sequential cell/ {{ print 0 + $3 }}');",
6969
"buffs=$(cat {log} | awk '/Buffer/ {{ buffer=$2; exit }} END {{ print 0 + buffers }}');",
70-
"tbuffs=$(cat {log} | awk '/Timing Repair/ {{ print 0 + $4 }}');",
70+
"tbuffs=$(cat {log} | awk '/Timing Repair Buffer/ {{ print 0 + $4 }}');",
7171
"wns=$(cat {log} | awk '/wns/ {{ print $2 }}');",
7272
"tns=$(cat {log} | awk '/tns/ {{ print $2 }}');",
7373
"tot_pow=$(cat {log} | awk '/^Total / {{ total_power=$5 }} END {{ print total_power }}');",

0 commit comments

Comments
 (0)