summaryrefslogtreecommitdiff
path: root/microbench
diff options
context:
space:
mode:
authorPatrick Somaru <patsomaru@fb.com>2022-02-18 10:59:57 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2022-02-18 11:23:18 -0800
commitf066b5cecbc21b2560586486e179350615f34bd1 (patch)
treee0d1c253198c647ba748a5f3d6c2ff2ca943237a /microbench
parent2fbc672732b872177d08cc8f15c0fa4a3de39ccc (diff)
update buckifier, add support for microbenchmarks (#9598)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/9598 Reviewed By: jay-zhuang, hodgesds Differential Revision: D34130191 fbshipit-source-id: e5413f7d6af70a66940022d153b64a3383eccff1
Diffstat (limited to 'microbench')
-rw-r--r--microbench/ribbon_bench.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/microbench/ribbon_bench.cc b/microbench/ribbon_bench.cc
index ee981db58..0191464d4 100644
--- a/microbench/ribbon_bench.cc
+++ b/microbench/ribbon_bench.cc
@@ -143,7 +143,7 @@ static void FilterQueryNegative(benchmark::State &state) {
fp_cnt++;
}
}
- state.counters["FP %"] =
+ state.counters["fp_pct"] =
benchmark::Counter(fp_cnt * 100, benchmark::Counter::kAvgIterations);
}
BENCHMARK(FilterQueryNegative)->Apply(CustomArguments);