3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

CENTOS8.0にGPU高速計算のためのCUDA10.1 toolkit and Driverのインストール

Last updated at Posted at 2019-10-21

全てはBIOS設定のsecure bootをdisableにするところから始まる。

追加、途中でエラーが出たらこちらの先人のアドバイスを参考にしてください
https://qiita.com/sikeda107/items/e916fbb07ca5c3fe60da

GPUがCPUに刺さっているのかを確認するためにyumを使ってpciutilsをインストールする。

sudo yum install pciutils

そして以下のコマンドを入力しこれでGPUの詳細が表示されたらOKである。

sudo lspci |grep -i nvidia

自分のワークステーションの環境はXeon ( gpu nvidia GM200[GeForce GTX TITAN X])と表示された。
以下のNVIDIA公式サイトから
https://developer.nvidia.com/cuda-downloads
以下の画像のように選択し、CUDA10.1 toolkit and Driverのソースコードを取得する。
スクリーンショット 2019-10-21 16.43.36.png

ネットワークからcudaのrpmファイルを取得するためにyumを使ってwgetをインストールする。

sudo yum install wget

そしてサイトの説明に従ってCENTOS8.0のスクリーン上でインストールを行う。
スクリーンショット 2019-10-21 17.14.51.png

$ wget http://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda-repo-rhel8-10-1-local-10.1.243-418.87.00-1.0-1.x86_64.rpm
$ sudo rpm -i cuda-repo-rhel8-10-1-local-10.1.243-418.87.00-1.0-1.x86_64.rpm
$ sudo dnf clean all
$ sudo dnf -y install cuda

再起動する。

sudo reboot

その後CUDAのPATH指定を行う。

$ export PATH=/usr/local/cuda-10.1/bin${PATH:+:${PATH}}
$ export LD_LIBRARY_PATH=/usr/local/cuda-10.1/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
$export CUDA_HOME=/usr/local/cuda

以下のコマンドでバージョンが確認できる(CUDA ver.10.1)

$ nvcc -V

以下のコマンドで何か表示されればNvidia Driverは正常にインストールされたことになる。

$ nvidia-smi
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?