aboutsummaryrefslogtreecommitdiff
path: root/contrib/benchmark/collect.awk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/benchmark/collect.awk')
-rw-r--r--contrib/benchmark/collect.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/benchmark/collect.awk b/contrib/benchmark/collect.awk
index 5afa093e2..16f2e700c 100644
--- a/contrib/benchmark/collect.awk
+++ b/contrib/benchmark/collect.awk
@@ -105,6 +105,6 @@ END {
105 for (x in op) { 105 for (x in op) {
106 total_ops_adjusted += op_baseline[x] * op[x]["count"]; 106 total_ops_adjusted += op_baseline[x] * op[x]["count"];
107 } 107 }
108 print "total_ops_adjusted_ms", total_ops_adjusted; 108 print "total_ops_adjusted_ms", int(total_ops_adjusted);
109 } 109 }
110} 110}