// Copyright (c) 2022 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 #include #include template void BenchFillClearMap(benchmark::Bench& bench, Map& map) { size_t batch_size = 5000; // make sure each iteration of the benchmark contains exactly 5000 inserts and one clear. // do this at least 10 times so we get reasonable accurate results bench.batch(batch_size).minEpochIterations(10).run([&] { auto rng = ankerl::nanobench::Rng(1234); for (size_t i = 0; i < batch_size; ++i) { map[rng()]; } map.clear(); }); } static void PoolAllocator_StdUnorderedMap(benchmark::Bench& bench) { auto map = std::unordered_map(); BenchFillClearMap(bench, map); } static void PoolAllocator_StdUnorderedMapWithPoolResource(benchmark::Bench& bench) { using Map = std::unordered_map, std::equal_to, PoolAllocator, sizeof(std::pair) + 4 * sizeof(void*), alignof(void*)>>; // make sure the resource supports large enough pools to hold the node. We do this by adding the size of a few pointers to it. auto pool_resource = Map::allocator_type::ResourceType(); auto map = Map{0, std::hash{}, std::equal_to{}, &pool_resource}; BenchFillClearMap(bench, map); } BENCHMARK(PoolAllocator_StdUnorderedMap, benchmark::PriorityLevel::HIGH); BENCHMARK(PoolAllocator_StdUnorderedMapWithPoolResource, benchmark::PriorityLevel::HIGH);