How To Install CUDA 13 On Ubuntu 22.04 Linux Mint21.3
As I wanted to learn/try out the Tile Programming (which might be the future of MatMul Accelaration!). CuTe DSL and CUTLASS. I wanted to have CUDA 13 installed. I have installed on top my cuda 12 version which I installed previously.
- In grub press e and type
nomodesetbeforequite splash//unsure sudo service lightdm stopwget https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_580.65.06_linux.runsudo sh cuda_13.0.0_580.65.06_linux.run- ACCEPT. Untick driver and docs. Tick tool kit.
- Unpon success. reboot.
- Append in
~/.bashrcexport PATH=/usr/local/cuda-13.0/bin${PATH:+:${PATH}} export LD_LIBRARY_PATH=/usr/local/cuda-13.0/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
ok, More CuTe Examples later. Cheers :)