aboutsummaryrefslogtreecommitdiff
path: root/contrib/benchmark
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/benchmark')
-rw-r--r--contrib/benchmark/collect.awk6
1 files changed, 2 insertions, 4 deletions
diff --git a/contrib/benchmark/collect.awk b/contrib/benchmark/collect.awk
index b88b3dc7d..5afa093e2 100644
--- a/contrib/benchmark/collect.awk
+++ b/contrib/benchmark/collect.awk
@@ -103,10 +103,8 @@ END {
103 103
104 if (have_baseline) { 104 if (have_baseline) {
105 for (x in op) { 105 for (x in op) {
106 total_ops_adjusted[x] = op_baseline[x] * op[x]["count"]; 106 total_ops_adjusted += op_baseline[x] * op[x]["count"];
107 }
108 for (x in op) {
109 print "total_ops_adjusted_ms", total_ops_adjusted[x];
110 } 107 }
108 print "total_ops_adjusted_ms", total_ops_adjusted;
111 } 109 }
112} 110}