Bitcoin Core 31.99.0
P2P Digital Currency
merkle_root.cpp
Go to the documentation of this file.
1// Copyright (c) 2016-present 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 <consensus/merkle.h>
7#include <random.h>
8#include <uint256.h>
9#include <util/check.h>
10
11#include <initializer_list>
12#include <utility>
13#include <vector>
14
15static void MerkleRoot(benchmark::Bench& bench)
16{
17 FastRandomContext rng{/*fDeterministic=*/true};
18
19 std::vector<uint256> hashes{};
20 hashes.resize(9001);
21 for (auto& item : hashes) {
22 item = rng.rand256();
23 }
24
25 constexpr uint256 expected_root{"d8d4dfd014a533bc3941b8663fa6e7f3a8707af124f713164d75b0c3179ecb08"};
26 for (bool mutate : {false, true}) {
27 bench.name(mutate ? "MerkleRootWithMutation" : "MerkleRoot").batch(hashes.size()).unit("leaf").run([&] {
28 std::vector<uint256> leaves;
29 leaves.reserve((hashes.size() + 1) & ~1ULL); // capacity rounded up to even
30 for (const auto& hash : hashes) {
31 leaves.push_back(hash);
32 }
33
34 bool mutated{false};
35 const uint256 root{ComputeMerkleRoot(std::move(leaves), mutate ? &mutated : nullptr)};
36 assert(root == expected_root);
37 });
38 }
39}
40
Fast randomness source.
Definition: random.h:386
uint256 rand256() noexcept
generate a random uint256.
Definition: random.h:317
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:649
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1308
ANKERL_NANOBENCH(NODISCARD) std Bench & name(char const *benchmarkName)
Gets the title of the benchmark.
Bench & batch(T b) noexcept
Sets the batch size.
Definition: nanobench.h:1332
Bench & unit(char const *unit)
Sets the operation unit.
256-bit opaque blob.
Definition: uint256.h:196
uint256 ComputeMerkleRoot(std::vector< uint256 > hashes, bool *mutated)
Definition: merkle.cpp:46
static void MerkleRoot(benchmark::Bench &bench)
Definition: merkle_root.cpp:15
BENCHMARK(MerkleRoot)
for(size_t start{0};start< num_entries;start+=SEED_BATCH_SIZE)
Definition: dbwrapper.cpp:381
FastRandomContext rng
Definition: dbwrapper.cpp:414
assert(!tx.IsCoinBase())