Host Installation Instructions

The purpose of this page is to provide the developer with guidance on the installation of Vitis™ AI tools on the development host PC. Instructions for installation of Vitis AI on the target are covered separately in the Quickstart tutorials.

There are two primary options for installation:

[Option1] Directly leverage pre-built Docker containers available from Docker Hub: xilinx/vitis-ai.

[Option2] Build a custom container to target your local host machine.

In addition, Vitis AI supports three host types:

  • CPU-only with no GPU acceleration

  • CUDA-capable GPUs

  • AMD ROCm™ GPUs

Important

These installation instructions are only relevant for the current release of Vitis AI. If your intention is to pull a Docker container for a historic release you must leverage one of the previous release Docker containers.

Pre-requisites

  • Confirm that your development machine meets the minimum Host System Requirements.

  • Confirm that you have at least 100GB of free space in the target partition.

Preparing for the Installation

Refer to the relevant section (CPU-only, ROCm, CUDA) below to prepare your selected host for Docker installation.

CPU-only Host Initial Preparation

CPU hosts require no special preparation.

ROCm GPU Host Initial Preparation

For ROCm hosts, developers need to install ROCm. Vitis AI 3.5 supports ROCm v5.5.

The below steps describe the installation of ROCm for Ubuntu 20.04 hosts. If you are leveraging a different host operating systems, please refer to the ROCm Installation Guide .

sudo apt-get update
wget https://repo.radeon.com/amdgpu-install/5.5/ubuntu/focal/amdgpu-install_5.5.50500-1_all.deb
sudo apt-get install ./amdgpu-install_5.5.50500-1_all.deb
sudo amdgpu-install --usecase=hiplibsdk,rocm

Add yourself to the render or video group using the following instructions:

sudo usermod -a -G render $LOGNAME
-OR-
sudo usermod -a -G video $LOGNAME

Note

Use of the video group is recommended for all ROCm-supported operating systems.

Add the user to the render group for Ubuntu 20.04:

sudo usermod -a -G render $LOGNAME

Make sure to reboot the machine after installing the ROCm kernel package to force the new kernel to load on reboot. You can verify the ROCm kernel is loaded by typing the following command at a prompt:

lsmod | grep amdgpu

You may also refer to the ROCm Docker installation documentation for further details.

CUDA GPU Host Initial Preparation

If you are leveraging a Vitis AI Docker Image with CUDA-capable GPU acceleration, you must install the NVIDIA Container Toolkit, which enables GPU support inside the Docker container. Please refer to the official NVIDIA documentation for additional information.

For Ubuntu distributions, NVIDIA driver and Container Toolkit installation can generally be accomplished as in the following example (use sudo for non-root users):

apt purge nvidia* libnvidia*
apt install nvidia-driver-xxx
apt install nvidia-container-toolkit

xxx is the version of driver that you are choosing to install (i.e, nvidia-driver-510), and is a version that meets Vitis AI Host System Requirements.

A simple test to confirm driver installation is to execute nvidia-smi. This command can be used as an initial test outside of the Docker environment, and also can be used as a simple test inside of a Docker container following the installation of Docker and the Nvidia Container Toolkit.

nvidia-smi

The output should appear similar to the below, indicating the activation of the driver, and the successful installation of CUDA:

/Thu Dec  8 21:39:42 2022
/+-----------------------------------------------------------------------------+
/| NVIDIA-SMI 470.161.03   Driver Version: 470.161.03   CUDA Version: 11.4     |
/|-------------------------------+----------------------+----------------------+
/| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
/| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
/|                               |                      |               MIG M. |
/|===============================+======================+======================|
/|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
/|  0%   40C    P8     1W / 120W |     15MiB /  5944MiB |      0%      Default |
/|                               |                      |                  N/A |
/+-------------------------------+----------------------+----------------------+
/
/+-----------------------------------------------------------------------------+
/| Processes:                                                                  |
/|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
/|        ID   ID                                                   Usage      |
/|=============================================================================|
/+-----------------------------------------------------------------------------+

Refer NVIDIA driver installation for further details of driver installation.

Docker Install and Verification

Once you are confident that your host has been prepared according to the above guidance refer to official Docker documentation to install the Docker engine.

Important

The Docker daemon always runs as the root user. Non-root users must be added to the docker group. Do this now.

Next, perform a quick and simple test of your Docker installation by executing the following command. This command will download a test image from Docker Hub and run it in a container. When the container runs successfully, it prints a “Hello World” message and exits.

docker run hello-world

Finally, verify that the version of Docker that you have installed meets the minimum Host System Requirements by running the following command:

docker --version

Clone The Repository

If you have not already done so, you should now clone the Vitis AI repository to the host machine as follows:

git clone https://github.com/Xilinx/Vitis-AI
cd Vitis-AI

Leverage Vitis AI Containers

You are now ready to start working with the Vitis AI Docker container. At this stage you will choose whether you wish to use the pre-built container, or build the container from scripts.

Starting with the Vitis AI 3.0 release, pre-built Docker containers are framework specific. Furthermore, we have extended support to include AMD ROCm enabled GPUs. Users thus now have three options for the host Docker:

  1. CPU-only

  2. CUDA-capable GPUs

  3. ROCm-capable GPUs

CUDA-capable GPUs are not supported by pre-built containers, and thus the developer must build the container from scripts.

Option 1: Leverage the Pre-Built Docker

To download the most up-to-date version of the pre-built docker, you will need execute the appropriate command, using the following general format:

docker pull xilinx/vitis-ai-<Framework>-<Arch>:latest

Where <Framework> and <Arch> can be selected as in the table below:

Vitis AI Pre-built Container Options

Desired Docker

<Framework>

<Arch>

PyTorch cpu-only

pytorch

cpu

TensorFlow 2 cpu-only

tensorflow2

cpu

TensorFlow 1.15 cpu-only

tensorflow

cpu

PyTorch ROCm

pytorch

rocm

TensorFlow 2 ROCm

tensorflow2

rocm

Specific Examples:

  • PyTorch CPU-only docker: docker pull xilinx/vitis-ai-pytorch-cpu:latest

  • PyTorch ROCm docker: docker pull xilinx/vitis-ai-pytorch-rocm:latest

  • TensorFlow 2 CPU docker : docker pull xilinx/vitis-ai-tensorflow2-cpu:latest

  • TensorFlow 2 ROCm docker: docker pull xilinx/vitis-ai-tensorflow2-rocm:latest

Important

The cpu option does not provide GPU acceleration support which is strongly recommended for acceleration of the Vitis AI Quantization process. The pre-built cpu container should only be used when a GPU is not available on the host machine.

Next, you can now start the Vitis AI Docker using the following commands:

cd <Vitis-AI install path>/Vitis-AI
./docker_run.sh xilinx/vitis-ai-<pytorch|tensorflow2|tensorflow>-<cpu|rocm>:latest

Option 2: Build the Docker Container from Xilinx Recipes

As of this release, a single unified docker build script is provided. This script enables developers to build a container for a specific framework. This single unified script supports CPU-only hosts, GPU-capable hosts, and AMD ROCm-capable hosts.

In most cases, developers will want to leverage the GPU or ROCm-enabled Dockers as they provide support for accelerated quantization and pruning. For NVIDIA graphics cards that meet Vitis AI CUDA requirements (listed here) you can leverage the gpu Docker.

Important

Navigate to the docker subdirectory in the Vitis AI install path:

cd <Vitis-AI install path>/Vitis-AI/docker

Here you will find the docker_build.sh script that will be used to build the container. Execute the script as follows: ./docker_build.sh -t <DOCKER_TYPE> -f <FRAMEWORK>

The supported build options are:

Vitis AI Docker Container Build Options

DOCKER_TYPE (-t)

TARGET_FRAMEWORK (-f)

Desired Environment

cpu

pytorch

PyTorch cpu-only

tf2

TensorFlow 2 cpu-only

tf1

TensorFlow 1.15 cpu-only

gpu

pytorch

PyTorch with AI Optimizer CUDA-gpu

tf2

TensorFlow 2 with AI Optimizer CUDA-gpu

tf1

TensorFlow 1.15 with AI Optimizer CUDA-gpu

rocm

pytorch

PyTorch with AI Optimizer ROCm-gpu

tf2

TensorFlow 2 with AI Optimizer ROCm-gpu

Important

The cpu option does not provide GPU acceleration support which is strongly recommended for acceleration of the Vitis AI Quantization process. The pre-built cpu container should only be used when a GPU is not available on the host machine.

As an example, the developer should use the following commands to build a Pytorch CUDA GPU docker with support for the Vitis AI Optimizer. Adjust your path to <Vitis-AI install path>/Vitis-AI/docker directory as necessary.

cd <Vitis-AI install path>/Vitis-AI/docker
./docker_build.sh -t gpu -f pytorch

You may also run docker_build.sh --help for additional information.

Warning

The docker_build process may take several hours to complete. Assuming the build is successful, move on to the steps below. If the build was unsuccessful, inspect the log output for specifics. In many cases, a specific package could not be located, most likely due to remote server connectivity. Often, simply re-running the build script will result in success. In the event that you continue to run into problems, please reach out for support.

If the Docker has been enabled with CUDA-capable GPU support, do a final test to ensure that the GPU is visible by executing the following command:

docker run --gpus all nvidia/cuda:11.3.1-cudnn8-runtime-ubuntu20.04 nvidia-smi

This should result in an output similar to the below:

/Thu Dec  8 21:39:42 2022
/+-----------------------------------------------------------------------------+
/| NVIDIA-SMI 470.161.03   Driver Version: 470.161.03   CUDA Version: 11.4     |
/|-------------------------------+----------------------+----------------------+
/| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
/| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
/|                               |                      |               MIG M. |
/|===============================+======================+======================|
/|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
/|  0%   40C    P8     1W / 120W |     15MiB /  5944MiB |      0%      Default |
/|                               |                      |                  N/A |
/+-------------------------------+----------------------+----------------------+
/
/+-----------------------------------------------------------------------------+
/| Processes:                                                                  |
/|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
/|        ID   ID                                                   Usage      |
/|=============================================================================|
/+-----------------------------------------------------------------------------+

Note

If CUDA GPU support was expected but was not enabled, check your NVIDIA driver and CUDA versions versus the Host System Requirements and verify your installation of the NVIDIA Container Toolkit. If you missed a step, you can rectify the problem and re-run docker_build.sh.

You can now start the Docker for Vitis AI using the following command:

cd <Vitis-AI install path>/Vitis-AI
./docker_run.sh xilinx/vitis-ai-<pytorch|tensorflow2|tensorflow>-<cpu|gpu|rocm>:latest

Important

Use ./docker_run.sh as a script reference should you have customized requirements for launching your Docker container.

In most cases, you have now completed the installation. Congratulations!

If you have previously been instructed by your ML Specialist or FAE to leverage a specific patch for support of certain features, you should now follow the instructions patch instructions to complete your installation.