| 49 | typename... Args> |
| 50 | __global__ __launch_bounds__(BlockSize) |
| 51 | void kernel(Args... args) |
| 52 | { |
| 53 | Benchmark::template run<BlockSize, ItemsPerThread, WithTile>(args...); |
| 54 | } |
| 55 | |
| 56 | struct subtract_left |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected