/* * Use this file for temporary benchmarks and implementations. * Usage example: * ``` * ./clio_benchmarks * --benchmark_time_unit=ms * --benchmark_repetitions=10 * --benchmark_display_aggregates_only=true * --benchmark_min_time=1x * --benchmark_filter="Playground" * ``` * * Note: Please don't push your temporary work to the repo. */ // #include // static void // benchmarkPlaygroundTest1(benchmark::State& state) // { // for (auto _ : state) { // // ... // } // } // BENCHMARK(benchmarkPlaygroundTest1);