| 814 | } |
| 815 | |
| 816 | hipError_t hipLaunchKernel_common(const void* hostFunction, dim3 gridDim, dim3 blockDim, |
| 817 | void** args, size_t sharedMemBytes, hipStream_t stream) { |
| 818 | STREAM_CAPTURE(hipLaunchKernel, stream, hostFunction, gridDim, blockDim, args, sharedMemBytes); |
| 819 | return ihipLaunchKernel(hostFunction, gridDim, blockDim, args, sharedMemBytes, stream, nullptr, |
| 820 | nullptr, 0); |
| 821 | } |
| 822 | |
| 823 | hipError_t hipLaunchKernel(const void* hostFunction, dim3 gridDim, dim3 blockDim, void** args, |
| 824 | size_t sharedMemBytes, hipStream_t stream) { |
no test coverage detected