SWDEV-510186 - Improve logging of kernel names

- Demangle kernel names in logs

Change-Id: I9aa58e8c109becb45ef7fc747d991bd657c4190a


[ROCm/clr commit: 9b7e0ad48a]
This commit is contained in:
Saleel Kudchadker
2025-01-17 22:22:05 +00:00
parent 4e84f2182e
commit ae7e2ecb85
2 changed files with 24 additions and 1 deletions
@@ -3225,7 +3225,8 @@ bool VirtualGPU::submitKernelInternal(const amd::NDRangeContainer& sizes,
}
}
ClPrint(amd::LOG_INFO, amd::LOG_KERN, "ShaderName : %s", gpuKernel.name().c_str());
ClPrint(amd::LOG_INFO, amd::LOG_KERN, "ShaderName : %s",
gpuKernel.getDemangledName().c_str());
amd::NDRange local(sizes.local());
address hidden_arguments = const_cast<address>(parameters);