| 762 | } |
| 763 | |
| 764 | static void VarianceKernelBenchArgs(benchmark::internal::Benchmark* bench) { |
| 765 | BenchmarkSetArgsWithSizes(bench, {1 * 1024 * 1024}); |
| 766 | } |
| 767 | |
| 768 | #define VARIANCE_KERNEL_BENCHMARK(FuncName, Type) \ |
| 769 | static void FuncName(benchmark::State& state) { VarianceKernelBench<Type>(state); } \ |
nothing calls this directly
no test coverage detected