SLI for multiple GPUs

前端 未结 1 1409
后悔当初
后悔当初 2020-12-29 03:43

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

相关标签:
1条回答
  • 2020-12-29 04:26

    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.

    0 讨论(0)
提交回复
热议问题