| 609 | } |
| 610 | |
| 611 | static void SumKernelArgs(benchmark::internal::Benchmark* bench) { |
| 612 | BenchmarkSetArgsWithSizes(bench, {1 * 1024 * 1024}); // 1M |
| 613 | } |
| 614 | |
| 615 | #define SUM_KERNEL_BENCHMARK(FuncName, Type) \ |
| 616 | static void FuncName(benchmark::State& state) { SumKernel<Type>(state); } \ |
nothing calls this directly
no test coverage detected