Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
gcs_filter.cpp
Go to the documentation of this file.
1// Copyright (c) 2018 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <bench/bench.h>
6#include <blockfilter.h>
7
10 for (int i = 0; i < 10000; ++i) {
12 element[0] = static_cast<uint8_t>(i);
13 element[1] = static_cast<uint8_t>(i >> 8);
14 elements.insert(std::move(element));
15 }
16
18 bench.batch(elements.size()).unit("elem").run([&] {
19 GCSFilter filter({siphash_k0, 0, 20, 1 << 20}, elements);
20
21 siphash_k0++;
22 });
23}
24
27 for (int i = 0; i < 10000; ++i) {
29 element[0] = static_cast<uint8_t>(i);
30 element[1] = static_cast<uint8_t>(i >> 8);
31 elements.insert(std::move(element));
32 }
33 GCSFilter filter({0, 0, 20, 1 << 20}, elements);
34
35 bench.unit("elem").run([&] { filter.Match(GCSFilter::Element()); });
36}
37
#define BENCHMARK(n)
Definition bench.h:65
This implements a Golomb-coded set as defined in BIP 158.
Definition blockfilter.h:25
std::unordered_set< Element, ByteVectorHash > ElementSet
Definition blockfilter.h:28
std::vector< uint8_t > Element
Definition blockfilter.h:27
Main entry point to nanobench's benchmarking facility.
Definition nanobench.h:616
static void ConstructGCSFilter(benchmark::Bench &bench)
Definition gcs_filter.cpp:8
static void MatchGCSFilter(benchmark::Bench &bench)
static unsigned char elements[DATACOUNT][DATALEN]
Definition tests_impl.h:36
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85