| 36 | } |
| 37 | |
| 38 | static void RandomKernelSystem(benchmark::State& state) { |
| 39 | RandomKernel(state, /*is_seed=*/false); |
| 40 | } |
| 41 | |
| 42 | static void RandomKernelSeed(benchmark::State& state) { |
| 43 | RandomKernel(state, /*is_seed=*/true); |
nothing calls this directly
no test coverage detected