#include #include #include #include #include #include "benchmark/benchmark.h" #include "ContainerBenchmarks.h" #include "GenerateInput.h" using namespace ContainerBenchmarks; constexpr std::size_t TestNumInputs = 1024; BENCHMARK_CAPTURE(BM_ConstructSize, vector_byte, std::vector{})->Arg(5140480); BENCHMARK_CAPTURE(BM_ConstructSizeValue, vector_byte, std::vector{}, 0)->Arg(5140480); BENCHMARK_CAPTURE(BM_ConstructIterIter, vector_char, std::vector{}, getRandomIntegerInputs)->Arg(TestNumInputs); BENCHMARK_CAPTURE(BM_ConstructIterIter, vector_size_t, std::vector{}, getRandomIntegerInputs)->Arg(TestNumInputs); BENCHMARK_CAPTURE(BM_ConstructIterIter, vector_string, std::vector{}, getRandomStringInputs)->Arg(TestNumInputs); BENCHMARK_MAIN();