AMD CPU CCD Percentage use

nyessien

New Member
Hi there. Is there a way to show CCD usage in percentage instead of all the cores? I mean CCD1 50% and CCD 2%, especially when playing a game, because total CPU usage does not show the full picture. Total CPU usage is accurate, but I want to know when a game is not using the die with the 3D cache. Or am I missing something?
 
You can achieve this by creating a custom sensor:

You will need to combine cores for each respective CCD and calculate their average: sum core usages / number of cores.
 
Hello there,

I was also searching for this and made a custom metric, sharing it here, maybe it will be useful to someone down the line. This is for a 16 core cpu, you can change it for 12 core one.

Here is the metric inside of the sensor table:
Screenshot 2025-03-17 214847.png

Here is how the registry looks like:
Screenshot 2025-03-17 214940.png

Here is the code. Copy and safe as a .reg file:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\HWiNFO64\Sensors\Custom]

[HKEY_CURRENT_USER\Software\HWiNFO64\Sensors\Custom\Custom Metrics]

[HKEY_CURRENT_USER\Software\HWiNFO64\Sensors\Custom\Custom Metrics\Usage0]
"Value"="\"Core 0 T0 Utility\" + \"Core 0 T1 Utility\" + \"Core 1 T0 Utility\" + \"Core 1 T1 Utility\" + \"Core 2 T0 Utility\" + \"Core 2 T1 Utility\" + \"Core 3 T0 Utility\" + \"Core 3 T1 Utility\" + \"Core 4 T0 Utility\" + \"Core 4 T1 Utility\" + \"Core 5 T0 Utility\" + \"Core 5 T1 Utility\" + \"Core 6 T0 Utility\" + \"Core 6 T1 Utility\" + \"Core 7 T0 Utility\" + \"Core 7 T1 Utility\" / 16"
"Name"="CCD0 Utilisation"

[HKEY_CURRENT_USER\Software\HWiNFO64\Sensors\Custom\Custom Metrics\Usage1]
"Name"="CCD1 Utilisation"
"Value"="\"Core 8 T0 Utility\" + \"Core 8 T1 Utility\" + \"Core 9 T0 Utility\" + \"Core 9 T1 Utility\" + \"Core 10 T0 Utility\" + \"Core 10 T1 Utility\" + \"Core 11 T0 Utility\" + \"Core 11 T1 Utility\" + \"Core 12 T0 Utility\" + \"Core 12 T1 Utility\" + \"Core 13 T0 Utility\" + \"Core 13 T1 Utility\" + \"Core 14 T0 Utility\" + \"Core 14 T1 Utility\" + \"Core 15 T0 Utility\" + \"Core 15 T1 Utility\" / 16"
 
Back
Top