| 78 | __global__ |
| 79 | __launch_bounds__(1024) |
| 80 | void flat_id_kernel(unsigned int* device_output) |
| 81 | { |
| 82 | unsigned int thread_id = rocprim::flat_block_thread_id<BlockSizeX, BlockSizeY, BlockSizeZ>(); |
| 83 | device_output[thread_id] = thread_id; |
| 84 | } |
| 85 | |
| 86 | TYPED_TEST(RocprimThreadTests, FlatBlockThreadID) |
| 87 | { |
nothing calls this directly
no outgoing calls
no test coverage detected