| 396 | } |
| 397 | |
| 398 | const char* KernelParamManager::GetStaticFunctionName(const void* func) |
| 399 | { |
| 400 | auto it = static_kernel_ptrs_names_.find(func); |
| 401 | if (it == static_kernel_ptrs_names_.end()) return nullptr; |
| 402 | return it->second.c_str(); |
| 403 | } |
| 404 | |
| 405 | const char* KernelParamManager::GetDynamicFunctionName(hipFunction_t func) |
| 406 | { |
nothing calls this directly
no outgoing calls
no test coverage detected