Skip to content

Commit acc68bc

Browse files
committed
Merge #13586: refactor: add benchmarks to bech32::Encode/Decode
189cf35 Add simple bech32 benchmarks (Karl-Johan Alm) Pull request description: This PR adds benchmarks to `Encode()`/`Decode()`. The benchmark commit is duplicated in #13632. Tree-SHA512: 102a193e4af58c9cb23c66d3dc7e174aa6328edab0ed74f92deb7804db5c3d0601807b3e25a5472b5c72d6113cde0dbc9976315644671a8f14ecf349967dbaaa
2 parents fad42e8 + 189cf35 commit acc68bc

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/Makefile.bench.include

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ bench_bench_bitcoin_SOURCES = \
2626
bench/mempool_eviction.cpp \
2727
bench/verify_script.cpp \
2828
bench/base58.cpp \
29+
bench/bech32.cpp \
2930
bench/lockedpool.cpp \
3031
bench/prevector.cpp
3132

src/bench/bech32.cpp

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
7+
#include <validation.h>
8+
#include <bech32.h>
9+
#include <utilstrencodings.h>
10+
11+
#include <vector>
12+
#include <string>
13+
14+
15+
static void Bech32Encode(benchmark::State& state)
16+
{
17+
std::vector<uint8_t> v = ParseHex("c97f5a67ec381b760aeaf67573bc164845ff39a3bb26a1cee401ac67243b48db");
18+
std::vector<unsigned char> tmp = {0};
19+
tmp.reserve(1 + 32 * 8 / 5);
20+
ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
21+
while (state.KeepRunning()) {
22+
bech32::Encode("bc", tmp);
23+
}
24+
}
25+
26+
27+
static void Bech32Decode(benchmark::State& state)
28+
{
29+
std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09";
30+
std::vector<unsigned char> vch;
31+
while (state.KeepRunning()) {
32+
bech32::Decode(addr);
33+
}
34+
}
35+
36+
37+
BENCHMARK(Bech32Encode, 800 * 1000);
38+
BENCHMARK(Bech32Decode, 800 * 1000);

0 commit comments

Comments
 (0)