You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
556 B
21 lines
556 B
#include "benchmark/benchmark.h"
|
|
|
|
#include "VariantBenchmarks.h"
|
|
|
|
using namespace VariantBenchmarks;
|
|
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 1);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 2);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 3);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 4);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 5);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 6);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 7);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 8);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 9);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 10);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 15);
|
|
BENCHMARK_TEMPLATE(BM_Visit, 3, 20);
|
|
|
|
BENCHMARK_MAIN();
|