| 140 | BENCHMARK(BM_Sum2DToScalarGPUHalf)->RangePair(1, 8192, 1, 8192); |
| 141 | |
| 142 | static void BM_Sum2DRowReduceGPU(int iters, int num_x, int num_y) { |
| 143 | DoRowReduce(iters, "gpu", "Sum", num_x, num_y); |
| 144 | } |
| 145 | BENCHMARK(BM_Sum2DRowReduceGPU)->RangePair(1, 8192, 1, 8192); |
| 146 | |
| 147 | static void BM_Sum2DColumnReduceGPU(int iters, int num_x, int num_y) { |
nothing calls this directly
no test coverage detected