NVIDIA CUDA Installation Guide
The following describes how to enable NVIDIA GPU on your AVA/AADP/AADK/AADR Developer Platform.
Before you start (configure Ubuntu 20.04)
1. Log into your AVA/AADP/AADK/AADR Developer Platform using the root password.
2. Update the apt-get package manager by executing the following command:
sudo apt-get update && sudo apt-get upgrade |
Note: This command makes sure that you have the latest packages and repositories updated in your package manager.
Once the command execution is completed, you can proceed to install your NVDIA CUDA.
Step 1: Installing Ubuntu Server GUI
Install tasksel
1. To install Ubuntu Server GUI (graphical user interface), we suggest using tasksel, a tool that can install multiple packages in one coordinated process.
2. To install tasksel and Ubuntu Server GUI, please run the following commands in sequence and select the software you want to install, as exemplified below.
sudo apt-get install tasksel |
sudo tasksel |
Note: To select a software, simply move to it and press [SPACE].
Once finished, please reboot your system.
Step 2: Installing CUDA-11.6 for Arm
First, check your driver is of the correct version by using the following command.
sudo dpkg -l | grep nvidia |
Download CUDA-11.6
1. On NVIDIA’s website https://developer.nvidia.com/cuda-download, select the corresponding CUDA for Arm (11.6).
2. Execute the following commands in sequence to install.
Once installed, you can go to ‘’/usr/local/‘’to check the version of the CUDA installed.
Export Path
3. For the CUDA to work, you need to set the path pointing to CUDA binaries by executing the following commands.
export CUDA_HOME = /usr/local/cuda-11.6 |
4. Exit and then save changes
source .bashrc |
5. After installing, go to the home directory and run the following commands to check your CUDA version to finish. If the nvidia-smi
command doesn’t work, please reboot your system and try again.
nvcc --version |
Step 3: Installing cuDNN-11.8 for Arm
1. To download cuDNN libraries, go to https://developer.nvidia.com/cudnn and click Download cuDNN. You will need to log into your NVIDIA developer account.
2. After logging in and accepting their terms and conditions, select the installer for ubuntu 20.04 aarch64sbsaa (Deb).
3. To install, you can use the following dpkg commands.
sudo dpkg -i <cuddnn file name> |
dpkg -l | grep nvidia |
dpkg -l | grep cuda |
Step 4: Installing TensorRT
1. Go to https://developer.nvidia.com/tensorrt.
2. Click Download now and select the TensorRT ARM SBSA according to your ubuntu and cuda environment. Agree to their license terms to download.
Install using deb package
3. To install using deb package, execute the following commands in sequence.
sudo dpkg -i nv-tensorrt-repo-ubuntu1x04-cudax.x-trt5.x.x.x-ga-yyyymmdd_1-1_amd64.deb |
sudo apt-key add /var/nv-tensorrt-repo-cudax.x-trt5.x.x.x-ga-yyyymmdd/7fa2af80.pub |
sudo apt-get update |
- If you run into the following error during installation, you can try resolving it by installing the dependencies one by one manually.
cd /var/nv-tensorrt-repo-ubuntu2004-cuda11.4-trt8.2.3.0-ga-20220113 |
- If you would like to run the samples that require ONNX graphsurgeon or use the Python module for your project, run:
sudo apt install python3-pip |
4. Verify your installation by running the following command.
dpkg -l | grep TensorRT
You should see something similar to the following.
Benchmarking TensorRT
Download onnx
5. Go to https://github.com/onnx/models/blob/master/vision/classification/efficientnet-lite4/model/efficientnet-lite4-11.onnx and download it.
6. Once downloaded, go to its download directory and run the following commands.
/usr/src/tensorrt/bin/trtexec –help |
Result: