| 45 | unsigned int Trials> |
| 46 | __global__ __launch_bounds__(BlockSize) |
| 47 | void kernel(const T* input, T* output) |
| 48 | { |
| 49 | Runner::template run<T, BlockSize, ItemsPerThread, Trials>(input, output); |
| 50 | } |
| 51 | |
| 52 | template<rocprim::block_reduce_algorithm algorithm> |
| 53 | struct reduce |
nothing calls this directly
no outgoing calls
no test coverage detected