mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-20 23:20:45 +02:00
bench: Add benchmark for CRollingBloomFilter::reset
This commit is contained in:
parent
3001cc61cf
commit
d2dbc7da26
@ -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(RollingBloom, 1500 * 1000);
|
||||||
|
BENCHMARK(RollingBloomReset, 20000);
|
||||||
|
Loading…
Reference in New Issue
Block a user