| 116 | } |
| 117 | |
| 118 | hipError_t HipKernelLaunchCommand::Launch(hipStream_t stream) |
| 119 | { |
| 120 | XDEBG("HipKernelLaunchCommand(%p): host_func = %p, kernel_params = %p", this, host_func_, kernel_params_); |
| 121 | return Driver::LaunchKernel(host_func_, num_blocks_, block_dim_, kernel_params_, shared_mem_bytes_, stream); |
| 122 | } |
| 123 | |
| 124 | hipError_t HipModuleKernelLaunchCommand::Launch(hipStream_t stream) |
| 125 | { |
nothing calls this directly
no outgoing calls
no test coverage detected