You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GPU utilization always shows 100% even when idling. I'm sure it isn't MangoHud's fault, because /sys/class/drm/card0/device/gpu_busy_percent is 100 all the time too. I've seen this issue already mentioned here 10 months ago, with no reply.
What's interesting is that radeontop seems to display the GPU utilization correctly. After taking a look at the source code, I've concluded that it calculates the percentage by repeatedly sampling amdgpu_read_mm_registers (take a look at amdgpu.c:25), &-ing it with 1U<<31 (ticks.c:53) and then dividing the number of times it wasn't 0 by the number of samples (ui.c:141). Can such a mechanism be implemented in MangoHud as a workaround for some problematic Vega GPUs?
The text was updated successfully, but these errors were encountered:
GPU utilization always shows 100% even when idling. I'm sure it isn't MangoHud's fault, because
/sys/class/drm/card0/device/gpu_busy_percent
is100
all the time too. I've seen this issue already mentioned here 10 months ago, with no reply.What's interesting is that radeontop seems to display the GPU utilization correctly. After taking a look at the source code, I've concluded that it calculates the percentage by repeatedly sampling
amdgpu_read_mm_registers
(take a look at amdgpu.c:25), &-ing it with1U<<31
(ticks.c:53) and then dividing the number of times it wasn't 0 by the number of samples (ui.c:141). Can such a mechanism be implemented in MangoHud as a workaround for some problematic Vega GPUs?The text was updated successfully, but these errors were encountered: