Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何在调试时在 Visual Studio 中的 Nsight 中切换 GPU,我正在编写 2 个 quadro 卡。代码在 cuda C 中。
您可以在 CUDA 程序中枚举您的卡片,并明确选择其中一张。或者您可以在启动 Nsight Monitor 之前设置环境变量,“CUDA_VISIBLE_DEVICES=0”选择序号为 0 的卡。
您可以参考 CUDA SDK 中的 deviceQueryDrv 示例,列出 GPU 的序号。您还可以参考如何枚举 GPU。