// // 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 "benchmark/vector/push.hpp" #include #include #include NONIUS_BENCHMARK("ours/basic", benchmark_push>()) NONIUS_BENCHMARK("ours/safe", benchmark_push>()) NONIUS_BENCHMARK("ours/unsafe", benchmark_push>()) NONIUS_BENCHMARK("ours/gc", benchmark_push>()) NONIUS_BENCHMARK("librrb", benchmark_push_librrb) NONIUS_BENCHMARK("transient ours/basic", benchmark_push_mut>()) NONIUS_BENCHMARK("transient ours/safe", benchmark_push_mut>()) NONIUS_BENCHMARK("transient ours/unsafe", benchmark_push_mut>()) NONIUS_BENCHMARK("transient ours/gc", benchmark_push_mut>()) NONIUS_BENCHMARK("transient librrb", benchmark_push_mut_librrb) NONIUS_BENCHMARK("transient std::vector", benchmark_push_mut_std>()) NONIUS_BENCHMARK("transient std::list", benchmark_push_mut_std>()) NONIUS_BENCHMARK("transient chunkedseq32", benchmark_push_mut_std>()) NONIUS_BENCHMARK("transient chunkedseq", benchmark_push_mut_std>())