Files
bitcoin/src/bench/strencodings.cpp
2026-06-10 10:32:40 +01:00

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);