|
20 | 20 |
|
21 | 21 | #define BENCH(func, type) \
|
22 | 22 | MY_BENCHMARK_CAPTURE( \
|
23 |
| - func, type, random_10000, 10000, std::string("random")); \ |
| 23 | + func, type, random_5k, 5000, std::string("random")); \ |
24 | 24 | MY_BENCHMARK_CAPTURE( \
|
25 |
| - func, type, random_100000, 100000, std::string("random")); \ |
| 25 | + func, type, random_100k, 100000, std::string("random")); \ |
26 | 26 | MY_BENCHMARK_CAPTURE( \
|
27 |
| - func, type, sorted_10000, 10000, std::string("sorted")); \ |
| 27 | + func, type, random_1m, 1000000, std::string("random")); \ |
28 | 28 | MY_BENCHMARK_CAPTURE( \
|
29 |
| - func, type, constant_10000, 10000, std::string("constant")); \ |
| 29 | + func, type, random_10m, 10000000, std::string("random")); \ |
30 | 30 | MY_BENCHMARK_CAPTURE( \
|
31 |
| - func, type, reverse_10000, 10000, std::string("reverse")); |
| 31 | + func, type, sorted_10k, 10000, std::string("sorted")); \ |
| 32 | + MY_BENCHMARK_CAPTURE( \ |
| 33 | + func, type, constant_10k, 10000, std::string("constant")); \ |
| 34 | + MY_BENCHMARK_CAPTURE( \ |
| 35 | + func, type, reverse_10k, 10000, std::string("reverse")); |
32 | 36 |
|
33 | 37 |
|
34 | 38 | #endif
|
0 commit comments