SLI for multiple GPUs

旧城冷巷雨未停 提交于 2019-11-29 01:51:03

问题


I am new to CUDA programming, and I am working on a problem that requires multiple GPUs in one machine. I understand that for better graphics programming multiple GPUs need to be combined via SLI. However, for CUDA programming do I need to combine GPUs via SLI as well?


回答1:


No, in general you don't want to use SLI if you plan on using the GPUs for compute instead of pure graphics applications. You will be able to access both GPUs as discrete devices from within your CUDA program. Note that you will need to explicitly divide work between the GPUs.

I don't have an explanation for why SLI isn't desirable for compute applications, but it's what I've read on the Nvidia forums and heard from others in IRC channels.



来源:https://stackoverflow.com/questions/11124494/sli-for-multiple-gpus

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!