本文介绍了监视图形卡使用情况的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在运行某个应用程序时,如何监视使用了多少图形卡?我想看看我的应用程序使用了多少GPU.

How can I monitor how much of the graphics card is used when I run a certain application? I want to see how much my application uses the GPU.

推荐答案

如果使用Visual Studio 2013和2015版本进行开发,则可以使用其GPU使用工具:

If you develop in Visual Studio 2013 and 2015 versions, you can use their GPU Usage tool:

  • GPU Usage Tool in Visual Studio (video) https://www.youtube.com/watch?v=Gjc5bPXGkTE
  • GPU Usage Visual Studio 2015 https://msdn.microsoft.com/en-us/library/mt126195.aspx
  • GPU Usage tool in Visual Studio 2013 Update 4 CTP1 (blog) http://blogs.msdn.com/b/vcblog/archive/2014/09/05/gpu-usage-tool-in-visual-studio-2013-update-4-ctp1.aspx
  • GPU Usage for DirectX in Visual Studio (blog) http://blogs.msdn.com/b/ianhu/archive/2014/12/16/gpu-usage-for-directx-in-visual-studio.aspx

MSDN的屏幕截图:

Screenshot from MSDN:

此外,似乎您可以用它诊断任何应用程序,不仅是Visual Studio项目:

Moreover, it seems you can diagnose any application with it, not only Visual Studio Projects:

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

这篇关于监视图形卡使用情况的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 23:59