| 46 | |
| 47 | // Another simple kernel that can be used to test atomics inside a graph. |
| 48 | __global__ __launch_bounds__(ROCPRIM_DEFAULT_MAX_BLOCK_SIZE) void atomicIncrement(int* data) |
| 49 | { |
| 50 | atomicAdd(data, 1); |
| 51 | } |
| 52 | |
| 53 | void testStreamCapture() |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected