• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

CUDA and SLI

Joined
5/27/09
Messages
106
Points
28
Is there any advantage of having 2-Way SLI from CUDA standpoint? Is it better to get, say one 256-core card vs two 128-core cards and set them up with SLI?
 
after doing some more research I found my answer. If anyone interested its here:
http://forums.nvidia.com/index.php?showtopic=30740

That's rather old thread, but the main point is still valid: CUDA practically has nothing to do with SLI. On the other side, depending on what you are intending to do, there were some improvements with recent toolkit releases in handling multiple GPUs - for example, CUDA 4.0 introduced so-called Uniform Virtual Addressing, that makes it possible for one GPU to access memory attached to other GPU, without going through main memory for this purpose, which is sort of a step in the direction of NUMA-like architecture.
 
SLI adds more horse power with additional GPUs but the app needs to be written to utilize them. The current most powerful single-core GPU from NVIDIA has 512 internals cores and it is better(*) than multiple of it on different cards.
 
Back
Top