Babak Mehrabi
Babak Mehrabi

Reputation: 2275

what is the difference between "Cuda Device" and GPU?

I read one tutorial about CUDA on this link.

http://geco.mines.edu/tesla/cuda_tutorial_mio/index.html

In this tutorial, It calls "CUDA Device". What is a "CUDA Device"? Is every GPU is a "CUDA Device" and vice verse ?? if not, please name one "CUDA Device"

Upvotes: 0

Views: 5393

Answers (3)

CygnusX1
CygnusX1

Reputation: 21779

A "CUDA device" is a single unit device that can support CUDA. In theory it can be anything; I am surprised that there are no efficient CUDA-on-CPU drivers yet :( However, currently, the only devices that do so are NVIDIA GPUs starting from GF8000 series.

Do note however, that dual-cards (e.g. GTX690) provide two CUDA devices.

Upvotes: 2

deep
deep

Reputation: 851

CUDA device means CUDA-enabled devices. It can be a CUDA-enabled GPU also or some other device. For more information on CUDA devices go to this: http://developer.nvidia.com/cuda-gpus

Upvotes: 0

RodrigoReis
RodrigoReis

Reputation: 111

CUDA devices are nVidia devices that supports CUDA. Not every GPU is a CUDA device. I don't know if every CUDA device is a GPU, it might be, or not. AMD GPUs for example do not support CUDA, but they support OpenCL.

Upvotes: 0

Related Questions