CUDA is a parallel computing platform and programming model developed by NVIDIA for general computing on graphical processing units (GPUs). It allows software developers and researchers to use the power of GPUs for accelerating computation of complex mathematical operations.

Table of Contents

In simpler terms, imagine you have a really difficult maths problem that would take hours or even days to solve on a regular computer. With CUDA, you can use special computer parts called GPUs to solve the problem much faster. This can be incredibly helpful for scientists and engineers who need to solve complex problems quickly.

Let’s begin

First thing to check is CUDA is already install with you hardware or not:

  1. Run this command in the terminal
nvcc --version

<aside> 💡 The output will be similar to this: (depending on the cuda version installed on your system)

</aside>

Untitled

<aside> 💡 if you didn’t see similar output, then check the directory.

</aside>

cd usr/local/
ls

Untitled

For CUDA there will a cuda directory. There can be more than one cuda directory based on the number of versions of cuda you installed.

CUDA Install Issue

If you found no CUDA install then follow these steps:

Using a pre-build Docker Image from Docker Hub

  1. Type the following command to check the Jetpack version.
sudo apt show nvidia-jetpack -a

<aside> 💡 The output would be similar to this: (not necessary be the same, just for an idea)

</aside>

Package: nvidia-jetpack
Version: 4.6.3-b17
Priority: standard
Section: metapackages
Maintainer: NVIDIA Corporation
Installed-Size: 199 kB
Depends: nvidia-l4t-jetson-multimedia-api (>> 32.7-0), nvidia-l4t-jetson-multimedia-api (<< 32.8-0), nvidia-cuda (= 4.6.3-b17), nvidia-tensorrt (= 4.6.3-b17), nvidia-nsight-sys (= 4.6.3-b17), nvidia-cudnn8 (= 4.6.3-b17), nvidia-opencv (= 4.6.3-b17), nvidia-container (= 4.6.3-b17), nvidia-vpi (= 4.6.3-b17)
Homepage: <http://developer.nvidia.com/jetson>
Download-Size: 29.4 kB
APT-Sources: <https://repo.download.nvidia.com/jetson/t194> **r32.7**/main arm64 Packages
Description: NVIDIA Jetpack Meta Package
  1. Based on your Nvidia-Jetpack version you need to install the supported CUDA version (based on the above Jetpack version-4.6 (r32.7.1)