mirror of
https://github.com/XRPLF/clio.git
synced 2026-03-31 00:42:31 +00:00
27 lines
584 B
C++
27 lines
584 B
C++
/*
|
|
* 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 <benchmark/benchmark.h>
|
|
|
|
// static void
|
|
// benchmarkPlaygroundTest1(benchmark::State& state)
|
|
// {
|
|
// for (auto _ : state) {
|
|
// // ...
|
|
// }
|
|
// }
|
|
|
|
// BENCHMARK(benchmarkPlaygroundTest1);
|