BSHA3
0.17.99
P2P Blockchain, based on Bitcoin
src
bench
merkle_root.cpp
Go to the documentation of this file.
1
// Copyright (c) 2016-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
7
#include <
uint256.h
>
8
#include <
random.h
>
9
#include <
consensus/merkle.h
>
10
11
static
void
MerkleRoot(
benchmark::State
& state)
12
{
13
FastRandomContext
rng(
true
);
14
std::vector<uint256> leaves;
15
leaves.resize(9001);
16
for
(
auto
& item : leaves) {
17
item = rng.rand256();
18
}
19
while
(state.
KeepRunning
()) {
20
bool
mutation =
false
;
21
uint256
hash =
ComputeMerkleRoot
(std::vector<uint256>(leaves), &mutation);
22
leaves[mutation] = hash;
23
}
24
}
25
26
BENCHMARK
(MerkleRoot, 800);
BENCHMARK
BENCHMARK(MerkleRoot, 800)
benchmark::State::KeepRunning
bool KeepRunning()
Definition:
bench.h:70
merkle.h
FastRandomContext
Fast randomness source.
Definition:
random.h:45
uint256
256-bit opaque blob.
Definition:
uint256.h:122
ComputeMerkleRoot
uint256 ComputeMerkleRoot(std::vector< uint256 > hashes, bool *mutated)
Definition:
merkle.cpp:46
bench.h
uint256.h
benchmark::State
Definition:
bench.h:54
random.h
Generated on Wed Nov 28 2018 15:30:27 for BSHA3 by
1.8.14