Ubuntu + GTX 1080 Ti で PyTorch を使いたいので以下のコマンドを実行して機械学習フレームワークをconda仮想環境にインストールしました。
bash
1sudo apt install nvidia-cuda-toolkit
bash
1conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
↓以下はPythonプログラムの実行結果です。
bash
1$ python foo.py 2Traceback (most recent call last): 3 File "foo.py", line 39, in <module> 4 G_B = Generator().cuda() 5 6 ....(略)... 7 8 of the CUDA driver.""".format(str(torch._C._cuda_getDriverVersion()))) 9AssertionError: 10The NVIDIA driver on your system is too old (found version 9000). 11Please update your GPU driver by downloading and installing a new 12version from the URL: http://www.nvidia.com/Download/index.aspx 13Alternatively, go to: https://pytorch.org to install 14a PyTorch version that has been compiled with your version 15of the CUDA driver. 16
10.2を入れたのに、9.0を認識しています。
また、cudaドライバーのバージョンを確認してみると
bash
1$ nvcc -V 2nvcc: NVIDIA (R) Cuda compiler driver 3Copyright (c) 2005-2015 NVIDIA Corporation 4Built on Tue_Aug_11_14:27:32_CDT_2015 5Cuda compilation tools, release 7.5, V7.5.17
なんと、Cudaドライバーのバージョンは7.5でした。
なんとかGTX 1080 Tiを使いたいすで。よろしくお願いします。
bash
1$ nvidia-smi 2+-----------------------------------------------------------------------------+ 3| NVIDIA-SMI 430.64 Driver Version: 430.64 CUDA Version: 10.1 | 4|-------------------------------+----------------------+----------------------+ 5| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | 6| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | 7|===============================+======================+======================| 8| 0 GeForce GTX 108... Off | 00000000:01:00.0 On | N/A | 9| 0% 58C P8 14W / 280W | 397MiB / 11177MiB | 2% Default | 10+-------------------------------+----------------------+----------------------+ 11 12+-----------------------------------------------------------------------------+ 13| Processes: GPU Memory | 14| GPU PID Type Process name Usage | 15|=============================================================================| 16| 0 1157 G /usr/lib/xorg/Xorg 215MiB | 17| 0 1859 G compiz 112MiB | 18| 0 2533 G ...AAAAAAAAAAAACAAAAAAAAAA= --shared-files 67MiB | 19+-----------------------------------------------------------------------------+