mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Merge bitcoin/bitcoin#24784: refactor: deduplicate integer serialization in RollingBloom benchmark
fff91418ff
refactor: Remove deduplication of data in rollingbloom bench (phyBrackets) Pull request description: Fixed up #24088. ACKs for top commit: vincenzopalazzo: ACKfff91418ff
Tree-SHA512: 9fef617bceb74a1aec4f4a1e7c4732c4764af3e8ac2fc02b84ce370e8b97431957ca17ee8f44fb96765f7304f8d7e5bfb951440db98ba40f240612f2232d215e
This commit is contained in:
commit
323d4c09c0
1 changed files with 5 additions and 8 deletions
|
@ -5,6 +5,9 @@
|
|||
|
||||
#include <bench/bench.h>
|
||||
#include <common/bloom.h>
|
||||
#include <crypto/common.h>
|
||||
|
||||
#include <vector>
|
||||
|
||||
static void RollingBloom(benchmark::Bench& bench)
|
||||
{
|
||||
|
@ -13,16 +16,10 @@ static void RollingBloom(benchmark::Bench& bench)
|
|||
uint32_t count = 0;
|
||||
bench.run([&] {
|
||||
count++;
|
||||
data[0] = count & 0xFF;
|
||||
data[1] = (count >> 8) & 0xFF;
|
||||
data[2] = (count >> 16) & 0xFF;
|
||||
data[3] = (count >> 24) & 0xFF;
|
||||
WriteLE32(data.data(), count);
|
||||
filter.insert(data);
|
||||
|
||||
data[0] = (count >> 24) & 0xFF;
|
||||
data[1] = (count >> 16) & 0xFF;
|
||||
data[2] = (count >> 8) & 0xFF;
|
||||
data[3] = count & 0xFF;
|
||||
WriteBE32(data.data(), count);
|
||||
filter.contains(data);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue