Skip to content

Step-by-step guide for the quick installation of CUDA and cuDNN on Linux (2022).

Notifications You must be signed in to change notification settings

tarikbacak/CUDA_cuDNN_Kurulumu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

CUDA ve cuDNN'in Kurulması

Ubuntu 18.04
CUDA 11.5.2
cuDNN 8.3.2.44

Sürücü

CUDA 11.5 için gerekli sürücü: >= 495.29.05

Sürücüyü kurabilmek için Ubuntu 18.04.5'i kurduktan sonra hiçbir güncelleme yapmadan direkt sürücüyü indiriyorum. Eğer güncelleme yaparsam sürücüyü kurduktan sonra yeniden başlatırken siyah ekranda takılı kalıyor.

CUDA 11.5.2

CUDA Dokümantasyon
CUDA 11.5.2 aşağıdaki adımlar takip edilerek kurulur.

  1. wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
  2. sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600
  3. wget https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda-repo-ubuntu1804-11-5-local_11.5.2-495.29.05-1_amd64.deb
  4. sudo dpkg -i cuda-repo-ubuntu1804-11-5-local_11.5.2-495.29.05-1_amd64.deb
  5. sudo apt-key add /var/cuda-repo-ubuntu1804-11-5-local/7fa2af80.pub
  6. sudo apt-get update
  7. sudo apt-get -y install cuda

Kurulumu kontrol etmek için aşağıdaki kod çalıştırılır.
md5sum cuda-repo-ubuntu1804-11-5-local_11.5.2-495.29.05-1_amd64.deb
Bu linkten çıkan 32 haneli şifre kontrol edilir.
Bilgisayar yeniden başlatılır.

cuDNN 8.3.2.44

cuDNN Dokümantasyon
cuDNN bu linkten kayıt olunduktan sonra indirilir.
cuDNN'in olduğu yerde terminal açılır ve aşağıdaki adımlar sırayla izlenir.

  1. sudo dpkg -i cudnn-local-repo-ubuntu1804-8.3.2.44_1.0-1_amd64.deb
  2. sudo apt-key add /var/cudnn-local-repo-*/7fa2af80.pub
  3. sudo apt-get update
  4. sudo apt-get install libcudnn8=8.3.2.44-1+cuda11.5
  5. sudo apt-get install libcudnn8-dev=8.3.2.44-1+cuda11.5
  6. sudo apt-get install libcudnn8-samples=8.3.2.44-1+cuda11.5

cuDNN'in doğru kurulup kurulmadığı kontrol edilir.

  1. cp -r /usr/src/cudnn_samples_v8/ $HOME
  2. cd $HOME/cudnn_samples_v8/mnistCUDNN
  3. make clean && make
    Bu noktada eğer hata verirse şu kodu deneyebilirsiniz:
    sudo apt-get install libfreeimage3 libfreeimage-dev
  4. ./mnistCUDNN
    "Test passed!" çıktıysa cuDNN başarıyla kurulmuştur.
    Şimdi bilgisayarı yeniden başlatın.

About

Step-by-step guide for the quick installation of CUDA and cuDNN on Linux (2022).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published