Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nvidia Tesla vs 480 for CUDA programming [closed]

Tags:

cuda

gpu

tesla

I am doing research on CUDA programming.
i have the option to buy a single NVidia Tesla or buy around 4-5 NVidia 480?
what do you recommend?

like image 505
scatman Avatar asked May 10 '10 06:05

scatman


People also ask

Is Open CL or CUDA better?

A study that directly compared CUDA programs with OpenCL on NVIDIA GPUs showed that CUDA was 30% faster than OpenCL. OpenCL is rarely used for machine learning. As a result, the community is small, with few libraries and tutorials available.

Do you need NVIDIA GPU for CUDA?

In order to run a CUDA application, the system should have a CUDA enabled GPU and an NVIDIA display driver that is compatible with the CUDA Toolkit that was used to build the application itself.

Is Tesla T4 better than V100?

The T4's performance was compared to V100-PCIe using the same server and software. Overall, V100-PCIe is 2.2x – 3.6x faster than T4 depending on the characteristics of each benchmark.

How many CUDA cores does a Tesla K80 have?

NVIDIA K80 Overview The K80 is a dual GPU unit which utilizes two GK210B chipsets. As a unit this card offers a total of 4992 CUDA cores clocked at 560 MHz coupled to 24GB of GDDR5 vRAM with a 384-bit memory interface and a 480 GB/s bandwidth.


1 Answers

Teslas are for more enterprise solutions (where you can expect the Tesla HW to be around for a long time), which the 480s will be here and then no longer in stock within a year (e.g. the GTX 295 is out of stock already). 4-5 480s have more horsepower than 1 Tesla, but that is only beneficial if you can actually leverage the multiple GPUs simultaneously and efficiently.

I work on Jacket, the GPU engine for MATLAB. Jacket has multi-GPU support and would be able to run some problems (say for instance, a bunch of for-loops) better on multiple 480s. However, other problems where multiple GPUs don't matter, will be better on the Tesla which has more memory and higher single card throughput.

Lot's of parameters to consider... good luck!

like image 160
arrayfire Avatar answered Oct 03 '22 07:10

arrayfire