KhronosGroup / Vulkan-Samples

One stop solution for all Vulkan samples
Apache License 2.0
4.33k stars 648 forks source link

Difference in Memory Budget #919

Closed Sukriti-sood closed 9 months ago

Sukriti-sood commented 9 months ago

I’m currently utilizing the Memory Budget extension on my system. However, I’ve noticed a significant discrepancy between the usage displayed in the output and the actual value indicated by the Task Manager. Could this be an error, or is there another explanation for this difference?

Difference

SaschaWillems commented 9 months ago

Don't use the task manager for GPU statistics. It's often wrong or misleading. Compare with a proper tool, e.g. nvidia's overlay.

Also values reported VK_EXT_memory_budget may have some limitations, see https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_memory_budget.html (see "current process").

Sukriti-sood commented 9 months ago

Okay Thanks @SaschaWillems . Got it.