Graphic Card Usage Monitoring

How can I control which part of the graphics card is used when starting a particular application? I want to see how much my application uses the GPU.

+47
gpu monitoring
Jul 21 '09 at 11:45
source share
2 answers

If you are developing versions of Visual Studio 2013 and 2015, you can use their GPU tool:

Screenshot from MSDN: enter image description here

In addition, it seems that you can diagnose any application with it, and not just Visual Studio projects:

In addition to Visual Studio projects, you can also collect data on GPU usage in any free .exe applications that you are sitting on. Just open the executable as a solution in Visual Studio, and then run a diagnostic session, and you can configure it using the GPU. Thus, if you use some type of engine or alternative development environment, you can still collect data on it until you are done with the executable.

Source: http://blogs.msdn.com/b/ianhu/archive/2014/12/16/gpu-usage-for-directx-in-visual-studio.aspx

+3
Nov 18 '15 at 10:56
source share

From Unix.SE : a simple command line utility called gpustat exists: https://github.com/wookayin/gpustat .

This is free software (MIT license) and is packaged in pypi. This is the nvidia-smi .

+2
Jul 21 '17 at 10:15
source share



All Articles