| 708 | } |
| 709 | |
| 710 | static void MinMaxKernelBenchArgs(benchmark::internal::Benchmark* bench) { |
| 711 | BenchmarkSetArgsWithSizes(bench, {1 * 1024 * 1024}); // 1M |
| 712 | } |
| 713 | |
| 714 | #define MINMAX_KERNEL_BENCHMARK(FuncName, Type) \ |
| 715 | static void FuncName(benchmark::State& state) { MinMaxKernelBench<Type>(state); } \ |
nothing calls this directly
no test coverage detected