mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-13 14:13:52 +02:00
26 lines
711 B
C++
26 lines
711 B
C++
// Copyright (c) 2022-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <bench/bench.h>
|
|
#include <consensus/consensus.h>
|
|
#include <crypto/hex_base.h>
|
|
#include <random.h>
|
|
|
|
#include <cstddef>
|
|
#include <span>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
static void HexStrBench(benchmark::Bench& bench)
|
|
{
|
|
FastRandomContext rng{/*fDeterministic=*/true};
|
|
auto data{rng.randbytes<std::byte>(MAX_BLOCK_WEIGHT)};
|
|
bench.batch(data.size()).unit("byte").run([&] {
|
|
auto hex = HexStr(data);
|
|
ankerl::nanobench::doNotOptimizeAway(hex);
|
|
});
|
|
}
|
|
|
|
BENCHMARK(HexStrBench);
|