1*4d6fc14bSjoerg #include "benchmark/benchmark.h" 2*4d6fc14bSjoerg 3*4d6fc14bSjoerg #include "VariantBenchmarks.h" 4*4d6fc14bSjoerg 5*4d6fc14bSjoerg using namespace VariantBenchmarks; 6*4d6fc14bSjoerg 7*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 1); 8*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 2); 9*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 3); 10*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 4); 11*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 5); 12*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 6); 13*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 7); 14*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 8); 15*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 9); 16*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 10); 17*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 20); 18*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 30); 19*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 40); 20*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 50); 21*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 60); 22*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 70); 23*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 80); 24*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 90); 25*4d6fc14bSjoerg BENCHMARK_TEMPLATE(BM_Visit, 1, 100); 26*4d6fc14bSjoerg 27*4d6fc14bSjoerg BENCHMARK_MAIN(); 28