0
0
Fork 0
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:
    ACK fff91418ff

Tree-SHA512: 9fef617bceb74a1aec4f4a1e7c4732c4764af3e8ac2fc02b84ce370e8b97431957ca17ee8f44fb96765f7304f8d7e5bfb951440db98ba40f240612f2232d215e
This commit is contained in:
MarcoFalke 2022-04-07 11:53:16 +02:00
commit 323d4c09c0
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -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);
});
}