| 403 | } |
| 404 | |
| 405 | const char* KernelParamManager::GetDynamicFunctionName(hipFunction_t func) |
| 406 | { |
| 407 | auto it = dynamic_kernel_ptrs_names_.find(func); |
| 408 | if (it == dynamic_kernel_ptrs_names_.end()) return nullptr; |
| 409 | return it->second.c_str(); |
| 410 | } |
| 411 | |
| 412 | void KernelParamManager::GetStaticKernelParamInfo(const void* func, uint32_t index, size_t* offset, size_t* size) |
| 413 | { |
nothing calls this directly
no outgoing calls
no test coverage detected