From 7f19d641647ac4ef313ed88d6b5c140983ce5436 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 15 Jul 2020 08:20:18 +0100 Subject: Squashed 'third_party/immer/' content from commit ad3e3556d git-subtree-dir: third_party/immer git-subtree-split: ad3e3556d38bb75966dd24c61a774970a7c7957e --- benchmark/set/access.ipp | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 benchmark/set/access.ipp (limited to 'benchmark/set/access.ipp') diff --git a/benchmark/set/access.ipp b/benchmark/set/access.ipp new file mode 100644 index 000000000000..f026d9cfa736 --- /dev/null +++ b/benchmark/set/access.ipp @@ -0,0 +1,30 @@ +// +// immer: immutable data structures for C++ +// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente +// +// This software is distributed under the Boost Software License, Version 1.0. +// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt +// + +#include "access.hpp" + +#ifndef GENERATOR_T +#error "you must define a GENERATOR_T" +#endif + +using generator__ = GENERATOR_T; +using t__ = typename decltype(generator__{}(0))::value_type; + +NONIUS_BENCHMARK("std::set", benchmark_access_std>()) +NONIUS_BENCHMARK("std::unordered_set", benchmark_access_std>()) +NONIUS_BENCHMARK("boost::flat_set", benchmark_access_std>()) +NONIUS_BENCHMARK("hamt::hash_trie", benchmark_access_hamt>()) +NONIUS_BENCHMARK("immer::set/5B", benchmark_access,std::equal_to,def_memory,5>>()) +NONIUS_BENCHMARK("immer::set/4B", benchmark_access,std::equal_to,def_memory,4>>()) + +NONIUS_BENCHMARK("bad/std::set", benchmark_bad_access_std>()) +NONIUS_BENCHMARK("bad/std::unordered_set", benchmark_bad_access_std>()) +NONIUS_BENCHMARK("bad/boost::flat_set", benchmark_bad_access_std>()) +NONIUS_BENCHMARK("bad/hamt::hash_trie", benchmark_bad_access_hamt>()) +NONIUS_BENCHMARK("bad/immer::set/5B", benchmark_bad_access,std::equal_to,def_memory,5>>()) +NONIUS_BENCHMARK("bad/immer::set/4B", benchmark_bad_access,std::equal_to,def_memory,4>>()) -- cgit 1.4.1