Questions tagged [cuda]

CUDA stands for Compute Unified Device Architecture

CUDA is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. Using CUDA, the latest Nvidia GPUs become accessible for computation like CPUs. Unlike CPUs, however, GPUs have a parallel throughput architecture that emphasizes executing many concurrent threads slowly, rather than executing a single thread very quickly. This approach of solving general-purpose (i.e., not exclusively graphics) problems on GPUs is known as GPGPU.

1090 questions
15
votes
2 answers

setting LD_LIBRARY_PATH for CUDA

Installing the CUDA toolkit results in the following instructions being printed to the console. Please make sure your LD_LIBRARY_PATH for 64-bit Linux distributions includes /usr/local/cuda-5.0/lib64:/usr/local/cuda-5.0/lib OR for 64-bit Linux…
H2ONaCl
  • 9,693
13
votes
4 answers

How to know if my GPU supports CUDA?

How can I know from the terminal or something whether my hardware supports CUDA?
a06e
  • 13,223
  • 26
  • 70
  • 104
6
votes
2 answers

How to install cuda 5.5 under Ubuntu 12.04 LTS 64-bit?

How to install CUDA 5.5 under Ubuntu 12.04 LTS 64-bit?
eesa
  • 61
  • 1
  • 1
  • 2
3
votes
0 answers

Limiting GPU cards in a sandbox type enviorment

I am designing a server that will run student's cuda/c++ code. The server will have multiple GPU cards so that multiple programs can run at once. I would like to break up the computer in to sandboxes that only contain one GPU each (such as using…
Michael
  • 131
  • 2
2
votes
1 answer

CUDA 8.0 on Ubuntu 16.04 - conflicting drivers

I've followed the NVIDIA guide to installing CUDA on Ubuntu, using the .deb file and then calling sudo aptitude install cuda. dpkg --list | grep nvidia now shows : ii nvidia-367 367.57-0ubuntu0.16.04.1 …
Quentin
  • 31
2
votes
0 answers

nvidia-smi not working

In trying to install theano and cuda I am having problems verifying that it is installed properly. I installed cuda with sudo apt-get install nvidia-cuda-toolkit and rebooted, but when I run nvidia-smi I get nvidia-smi NVIDIA-SMI couldn't find…
2
votes
1 answer

cuda6.0 does not run on 14.04

I have installed on my homegrown system a GeFporce 450GTS graphics card an should like to use its GPU in my hobby projects(mainly chess in either C++ or Python)The current cuda6.0 package installs without a hitch, including the shipped research…
2
votes
0 answers

I attempted to install cuda drivers, and now almost everything is broken

I tried to install CUDA tookit 5.0 on ubuntu 12.04 and the installation proceeded OK. After rebooting however, all I get is a terminal login. I've attempted to start the display manager with sudo start lightdm and it says all OK, but just hangs the…
Nathan
  • 813
2
votes
0 answers

How to understand CUDA out of memory message?

Below is the output of nvidia-smi. +-----------------------------------------------------------------------------+ | NVIDIA-SMI 410.104 Driver Version: 410.104 CUDA Version: 10.0 …
Kong
  • 1,241
1
vote
0 answers

CuDNN 6 install fails due to CUDA 9.0 reference

I want to use Tensorflow with GPU. Therefore I uninstalled CUDA 9 and installed CUDA 8. Now I want to install CUDNN6. However running this sudo dpkg -i libcudnn6_6.0.21-1+cuda8.0_amd64.deb Gives the following output: Preparing to unpack…
Derk
  • 111
1
vote
1 answer

What does the error "ImportError: libcublas.so.8.0: cannot open shared object file: No such file or directory" mean when I try to use TensorFlow?

I've seen other errors similar to this but always "libcudart.so.8.0" as opposed to " libcublas.so.8.0".
IMN
  • 31
1
vote
2 answers

Ubuntu 16.04 install cuda 6.5

I cant install cuda 6.5 in ubuntu 16.04 I used the deb from https://developer.nvidia.com/cuda-toolkit-65 Its supposed to add a PPA. It did it once then I removed it after the sudo update complained about not being able to read from the PPA. Then I…
SentinalBais
  • 71
  • 1
  • 8
1
vote
1 answer

is nvidia GeForce MX330 CUDA enabled?

I'm trying to run something that requires CUDA and CUDNN. But in the Nvidia page, I didn't see that MX330 is listed as CUDA enabled. I tried a few things to install CUDA but there are some kind of errors. Wonder if someone actually succeeded and if…
1
vote
1 answer

How to see whether installed CUDA is 32-bit or 64-bit?

Is there any command or any file in the CUDA directory which can answer this question?
user55717
  • 11
  • 1
  • 4
1
vote
1 answer

nvcc fatal : Path to libdevice library not specified

As mentioned above I'm receiving : nvcc fatal : Path to libdevice library not specified After searching on the web , I'm sure that this is path issues, but mine is a bit different, and I wasn't able to solve it. Somehow my CUDA is not installed…
1
2