ubuntu22.04 installation nvidia-cudnn

nvidia-cudnnIt is the abbreviation of NVIDIA CUDA Deep Neural Network library. This is a library provided by NVIDIA for accelerating deep learning applications. It contains highly optimized implementations for common operations in deep neural networks (such as convolution, pooling, normalization, activation layers, etc.). These operations are specifically optimized for efficient computing on NVIDIA’s GPUs, significantly speeding up the training and inference of deep learning models. cuDNN is part of the NVIDIA Deep Learning SDK and is widely used in various machine learning and deep learning frameworks.

  1. First update your APT database:

    sudo apt update
    
  2. Then try to install nvidia-cudnn:

    sudo apt -y install nvidia-cudnn
    

This will install the NVIDIA CUDA Deep Neural Network Library (cuDNN). Please note that this method installs a script /usr/sbin/update-nvidia-cudnn that downloads and installs NVIDIA cuDNN locally. This script will be called automatically during the installation process.

Pictures during the installation process
Insert image description here
Insert image description here
Insert image description here
Insert image description here

Guess you like

Origin blog.csdn.net/sunyuhua_keyboard/article/details/134875863