문제

I am trying to hunt down a possible memory leak in my Sharpdx / DirectX application.

I am getting the following information from process explorer which I do not know how to interpret.

enter image description here

  1. What is Dedicated GPU Memory?
  2. What is System GPU Memory?
  3. What is Comitted GPU Memory?
도움이 되었습니까?

해결책

  1. Dedicated GPU memory is basically the VRAM on-board the GPU

  2. System GPU memory is memory that the graphics card driver is using the GART (Graphics Address Remapping Table) to store resources in system memory... AGP and PCI Express both provide regions of memory set aside for this purpose (sometimes referred to as aperture segments).

  3. Committed GPU memory refers to the amount of memory mapped into a display device's address space by the display driver, it is a difficult concept to explain but this number typically does not represent anything worthwhile to anyone but driver developers.

I suggest you look into the following documentation on MSDN as well as this overview of GPU address space segementation, while they are somewhat technical they give a general overview of what is going on.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top