8

I am trying to enable cuda and cudnn in my ubuntu 23.10, however, the only available cuda toolkit is for Ubuntu 22.04, any suggestions how can I proceed?

Jjay
  • 81

1 Answers1

6

To install CUDA and cuDNN in Ubuntu 23.10 open the terminal and type:

sudo apt update  
sudo apt install nvidia-cudnn nvidia-cuda-toolkit

The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. cuDNN provides highly tuned implementations for standard routines such as forward and backward convolution, pooling, normalization, and activation layers. cuDNN is part of the NVIDIA Deep Learning SDK.

It's just as good as the software from the NVIDIA website, and much easier to install and (automatically) update.

karel
  • 122,292
  • 133
  • 301
  • 332