| 50 | unsigned int Trials> |
| 51 | __global__ __launch_bounds__(BlockSize) |
| 52 | void kernel(const T* d_input, const unsigned int* d_ranks, T* d_output) |
| 53 | { |
| 54 | Runner::template run<T, BlockSize, ItemsPerThread, Trials>(d_input, d_ranks, d_output); |
| 55 | } |
| 56 | |
| 57 | struct blocked_to_striped |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected