Installed NVidia drivers for Quadro M500M as follows:
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt install nvidia-390
restart
Checked the installation by
nvidia-smi
and got:
Mon Dec 17 10:13:49 2018
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 390.87 Driver Version: 390.87 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Quadro M500M Off | 00000000:06:00.0 Off | N/A |
| N/A 46C P0 N/A / N/A | 688MiB / 2004MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| 0 1305 G /usr/lib/xorg/Xorg 359MiB |
| 0 1496 G /usr/bin/gnome-shell 166MiB |
| 0 1984 G ...uest-channel-token=18290818570900219022 160MiB |
+-----------------------------------------------------------------------------+
So everything seams fine with drivers.
Just in case restarted the system.
Followed instructions for CUDA installation from https://www.tensorflow.org/install/gpu.
Selected:
Linux > x86_64 > Ubuntu > 18.04 > deb (local)
and followed the instructions listed underneath:
sudo dpkg -i cuda-repo-ubuntu1804-10-0-local-10.0.130-410.48_1.0-1_amd64.deb
sudo apt-key add /var/cuda-repo-10-0-local-10.0.130-410.48/7fa2af80.pub
sudo apt-get update
sudo apt-get install cuda-libraries-10-0
Instead of the 4th line above I have also tried
sudo apt-get install cuda
Running
nvcc --version
did not give me info about the version of CUDA:
Command 'nvcc' not found, but can be installed with:
sudo apt install nvidia-cuda-toolkit
So I tried
sudo apt install nvidia-cuda-toolkit
nvcc --version
only to get
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85
[b]
- So, why is CUDA-10.0 not detected? I thought I was following instructions to the letter
- Why is there a different method of installing CUDA that is not listed on the CUDA web page and why does it install an older version of CUDA?
- What is a good WORKING method for installing CUDA 10.0?
[/b]