mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-03 21:03:01 +02:00
bench: Add benchmark for CRollingBloomFilter::reset
This commit is contained in:
@@ -28,4 +28,13 @@ static void RollingBloom(benchmark::State& state)
|
||||
}
|
||||
}
|
||||
|
||||
static void RollingBloomReset(benchmark::State& state)
|
||||
{
|
||||
CRollingBloomFilter filter(120000, 0.000001);
|
||||
while (state.KeepRunning()) {
|
||||
filter.reset();
|
||||
}
|
||||
}
|
||||
|
||||
BENCHMARK(RollingBloom, 1500 * 1000);
|
||||
BENCHMARK(RollingBloomReset, 20000);
|
||||
|
Reference in New Issue
Block a user