These instructions will guide you through everything required for building and executing a program on the Ryzen™ AI NPU, starting from a fresh bare-bones Ubuntu 22.04 LTS install. Ubuntu 22.04 LTS, Ubuntu 24.04 LTS and Ubuntu 24.10 are supported by this toolchain.
Be sure you have the latest BIOS for your laptop or mini PC, this will ensure the NPU (sometimes referred to as IPU) is enabled in the system. You may need to manually enable the NPU:
:
Advanced → CPU Configuration → IPU
NOTE: Some manufacturers only provide Windows executables to update the BIOS, please do this before installing Ubuntu.
-
Turn off SecureBoot (Allows for unsigned drivers to be installed)
BIOS → Security → Secure boot → Disable
-
Turn Ac Power Loss to "Always On" (Can be used for PDU reset, turns computer back on after power loss)
BIOS → Advanced → AMD CBS → FCH Common Options → Ac Power Loss Options → Set Ac Power Loss to "Always On"
You will...
-
Install the compiler toolchain, allowing you to compile your own NPU designs from source. As part of this, you will need to...
-
...install MLIR-AIE from precompiled binaries (fast) or from source (slow).
-
Install a driver for the Ryzen™ AI. As part of this, you will need to...
-
Build and execute one of the example designs. This consists of...
Be advised that some of the potential steps (Linux kernel compilation and installing AIE Tools from Vitis™) may take hours. If you decide to build mlir-aie and/or LLVM from source, this will also take time, especially the LLVM build. Allocate enough time and patience. Once done, you will have an amazing toolchain allowing you to harness this great hardware at your hands.
Option A - Supporting AMD Ryzen™ AI with AMD XDNA™/AIE-ML (AIE2) and AMD XDNA™ 2 (AIE2P): Install AMD Vitis™ AIE Essentials
-
Install Vitis™ AIE Essentials from Ryzen AI Software 1.3 Early Accesss. We will assume you use the installation directory,
/tools/ryzen_ai-1.3.0/vitis_aie_essentials
.This is an early access lounge, you must register and be granted access at this time.
-
Download VAIML Installer for Linux based compilation:
ryzen_ai-1.3.0ea1.tgz
-
Extract the required tools:
tar -xzvf ryzen_ai-1.3.0ea1.tgz cd ryzen_ai-1.3.0 mkdir vitis_aie_essentials mv vitis_aie_essentials*.whl vitis_aie_essentials cd vitis_aie_essentials unzip vitis_aie_essentials*.whl
-
-
Set up an AI Engine license.
-
Get a local license for AI Engine tools from https://www.xilinx.com/getlicense.
-
Copy your license file (Xilinx.lic) to your preferred location, e.g.
/opt/Xilinx.lic
: -
Setup your environment using the following script for Vitis for aietools:
#!/bin/bash ################################################################################# # Setup Vitis AIE Essentials ################################################################################# export AIETOOLS_ROOT=/tools/ryzen_ai-1.3.0/vitis_aie_essentials export PATH=$PATH:${AIETOOLS_ROOT}/bin export LM_LICENSE_FILE=/opt/Xilinx.lic
-
Option B - Supporting AMD Ryzen™ AI and AMD Versal™ with AIE and AIE-ML/XDNA™ (AIE2): Install AMD Vitis™ 2023.2
-
Install Vitis™ under from Xilinx Downloads. You will need to run the installer as root. We will assume you use the default installation directory,
/tools/Xilinx
.This is a large download. A wired connection will speed things up. Be prepared to spend multiple hours on this step.
-
Set up an AI Engine license.
-
Get a local license for AI Engine tools from https://www.xilinx.com/getlicense.
-
Copy your license file (Xilinx.lic) to your preferred location, e.g.
/opt/Xilinx.lic
: -
Setup your environment using the following script for Vitis™ for aietools:
#!/bin/bash ################################################################################# # Setup Vitis (which is just for aietools) ################################################################################# export MYXILINX_VER=2023.2 export MYXILINX_BASE=/tools/Xilinx export XILINX_LOC=$MYXILINX_BASE/Vitis/$MYXILINX_VER export AIETOOLS_ROOT=$XILINX_LOC/aietools export PATH=$PATH:${AIETOOLS_ROOT}/bin export LM_LICENSE_FILE=/opt/Xilinx.lic
-
Vitis™ requires some python3.8 libraries:
sudo add-apt-repository ppa:deadsnakes/ppa sudo apt-get update sudo apt install libpython3.8-dev
-
The reason we need to update the kernel is that the XDNA driver requires IOMMU SVA support. This step is required for Ubuntu 22.04 LTS. If you are using Ubuntu 24.04 you can install a prebuilt kernel from the Ubuntu Mainline Kernel PPA.
wget https://kernel.ubuntu.com/mainline/v6.11/amd64/linux-headers-6.11.0-061100-generic_6.11.0-061100.202409151536_amd64.deb wget https://kernel.ubuntu.com/mainline/v6.11/amd64/linux-headers-6.11.0-061100_6.11.0-061100.202409151536_all.deb wget https://kernel.ubuntu.com/mainline/v6.11/amd64/linux-image-unsigned-6.11.0-061100-generic_6.11.0-061100.202409151536_amd64.deb wget https://kernel.ubuntu.com/mainline/v6.11/amd64/linux-modules-6.11.0-061100-generic_6.11.0-061100.202409151536_amd64.deb sudo dpkg -i linux-headers-6.11.0-061100*.deb sudo dpkg -i linux-headers-6.11.0-061100-generic*.deb sudo dpkg -i linux-image*.deb sudo dpkg -i linux-modules*.deb
-
Disable Secure Boot in the BIOS. This allows for unsigned drivers to be installed.
On the ASUS Vivobook, this setting can be found under BIOS → Advanced Settings (F7) → Security → Secure Boot → Secure Boot Control (Set to Disabled)
-
Install the following prerequisite packages for compiling Linux:
sudo apt install \ build-essential debhelper flex bison libssl-dev libelf-dev libboost-all-dev libpython3.10-dev libsystemd-dev libtiff-dev libudev-dev
-
Pull the source for kernel version 6.10.
git clone --depth=1 --branch v6.10 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git export LINUX_SRC_DIR=$(realpath linux)
-
Create a build directory and a configuration within it.
mkdir linux-build export LINUX_BUILD_DIR=$(realpath linux-build) cp /boot/config-`uname -r` $LINUX_BUILD_DIR/.config
-
Go to the directory where you cloned Linux and adjust the configuration.
cd $LINUX_SRC_DIR ./scripts/config --file $LINUX_BUILD_DIR/.config --disable MODULE_SIG ./scripts/config --file $LINUX_BUILD_DIR/.config --disable SYSTEM_TRUSTED_KEYS ./scripts/config --file $LINUX_BUILD_DIR/.config --disable SYSTEM_REVOCATION_KEYS ./scripts/config --file $LINUX_BUILD_DIR/.config --enable DRM_ACCEL make O=$LINUX_BUILD_DIR olddefconfig
-
Build Linux.
make -j$(nproc) O=$LINUX_BUILD_DIR bindeb-pkg 2>&1 | tee kernel-build.log
Compiling the linux kernel may take hours.
Note that the final kernel
.deb
packages will be in the parent directory ofLINUX_BUILD_DIR
. -
Install the new Linux kernel and reboot.
cd $LINUX_BUILD_DIR sudo apt reinstall ../linux-headers-6.10.0_6.10.0-1_amd64.deb ../linux-image-6.10.0_6.10.0-1_amd64.deb ../linux-libc-dev_6.10.0-1_amd64.deb sudo shutdown --reboot 0
-
Install a more recent CMake, which is needed for building XRT.
-
Download CMake 3.28 binaries into
NEW_CMAKE_DIR
.mkdir cmake export NEW_CMAKE_DIR=$(realpath cmake) cd cmake wget https://github.com/Kitware/CMake/releases/download/v3.28.3/cmake-3.28.3-linux-x86_64.sh chmod +x ./cmake-3.28.3-linux-x86_64.sh ./cmake-3.28.3-linux-x86_64.sh
-
Answer the prompts with y (accept license), then n (include subdirectory).
-
Add new cmake directory to your
PATH
.export PATH="${NEW_CMAKE_DIR}/bin":"${PATH}"
-
Verify the install of CMake was successful.
cmake --version
The frist line this prints should read
cmake version 3.28.3
-
-
Install the following prerequisite packages.
sudo apt install \ libidn11-dev
-
Clone the XDNA™ driver repository and its submodules.
git clone https://github.com/amd/xdna-driver.git export XDNA_SRC_DIR=$(realpath xdna-driver) cd xdna-driver git reset --hard 3d5a8cf1af2adfbb6306ad71b45e5f3e1ffc5b37 git submodule update --init --recursive
The submodules use SSH remotes. You will need a GitHub account and locally installed SSH keys to pull the submodules. Follow these instructions to set up an SSH key. Alternatively, edit
.gitmodules
to use HTTPS instead of SSH. -
Install XRT. (Below steps are adapted from here.)
-
Install XRT prerequisites.
cd $XDNA_SRC_DIR sudo ./tools/amdxdna_deps.sh
-
Build XRT. Remember to source the aietools/Vitis™ setup script from above.
cd $XDNA_SRC_DIR/xrt/build ./build.sh -noert -noalveo
-
Install XRT.
cd $XDNA_SRC_DIR/xrt/build/Release sudo apt reinstall ./xrt_202420.2.18.0_22.04-amd64-xrt.deb ./xrt_202420.2.18.0_22.04-amd64-xbflash.deb
An error is expected in this step. Ignore it.
-
-
Build XDNA-Driver. Below steps are adapted from here.
cd $XDNA_SRC_DIR/build ./build.sh -release ./build.sh -package
-
Install XDNA™.
cd $XDNA_SRC_DIR/build/Release sudo apt reinstall ./xrt_plugin.2.18.0_ubuntu22.04-x86_64-amdxdna.deb
-
Check that the NPU is working if the device appears with xrt-smi:
source /opt/xilinx/xrt/setup.sh xrt-smi examine
At the bottom of the output you should see:
Devices present BDF : Name ------------------------------------ [0000:66:00.1] : RyzenAI-npu1
-
Install the following packages needed for MLIR-AIE:
sudo apt install \ build-essential clang clang-14 lld lld-14 cmake python3-venv python3-pip libxrender1 libxtst6 libxi6 virtualenv
-
Install g++13 and opencv needed for some programming examples:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt update sudo apt install gcc-13 g++-13 -y sudo apt install libopencv-dev python3-opencv
-
Remember to source the aietools/Vitis™ setup script from above.
-
Choose one of the two options (A or B) below for installing MLIR-AIE.
NOTE: Installing the mlir-aie tools from wheels via the quick setup path supports AIE-ML (AIE2) and AIE2P, it does NOT support Versal™ devices with AIE.
-
Clone the mlir-aie repository, best under /home/username for speed (yourPathToBuildMLIR-AIE):
git clone https://github.com/Xilinx/mlir-aie.git cd mlir-aie
-
Source
utils/quick_setup.sh
to setup the prerequisites and install the mlir-aie and llvm compiler tools from whls. -
Jump ahead to Build Device AIE Part step 2 below.
-
Clone https://github.com/Xilinx/mlir-aie.git best under /home/username for speed (yourPathToBuildMLIR-AIE), with submodules:
git clone --recurse-submodules https://github.com/Xilinx/mlir-aie.git
-
Follow regular getting started instructions Building on x86 from step 2. Please disregard any instructions referencing alternative LibXAIE versions or sysroots.
After all prerequisites (drivers and compilation toolchain) have been installed, you need to make them findable by adding them to the PATH
and setting required environment variables.
We suggest you add all of the following to a setup.sh
script in your home directory, and source setup.sh
as the first step of your workflow. That way, everything is set up in one setp.
export LM_LICENSE_FILE=/opt/Xilinx.lic
source /opt/xilinx/xrt/setup.sh
export PATH="${NEW_CMAKE_DIR}/bin":"${PATH}"
cd ${MLIR_AIE_BUILD_DIR}
source ${MLIR_AIE_BUILD_DIR}/ironenv/bin/activate
source ${MLIR_AIE_BUILD_DIR}/utils/env_setup.sh ${MLIR_AIE_BUILD_DIR}/my_install/mlir_aie ${MLIR_AIE_BUILD_DIR}/my_install/mlir ${MLIR_AIE_BUILD_DIR}/my_install/llvm-aie
Replace
${MLIR_AIE_BUILD_DIR}
with the directory in which you built mlir-aie above. Replace${NEW_CMAKE_DIR}
with the directory in which you installed CMake 3.28 above. Instead of search and replace, you can also define these values as environment variables.
For quick setup, this step is only needed if you are starting with a new terminal. If you are continuing in the same terminal you used to install the prerequisites, the environment variables should all be set.
cd ${MLIR_AIE_BUILD_DIR}
source ${MLIR_AIE_BUILD_DIR}/sandbox/bin/activate
source /opt/xilinx/xrt/setup.sh
source ${MLIR_AIE_BUILD_DIR}/utils/env_setup.sh ${MLIR_AIE_BUILD_DIR}/install ${MLIR_AIE_BUILD_DIR}/llvm/install
Replace
${MLIR_AIE_BUILD_DIR}
with the directory in which you built mlir-aie above. Instead of search and replace, you can also defineMLIR_AIE_BUILD_DIR
as an environment variable.
For your design of interest, for instance from programming_examples, 2 steps are needed: (i) build the AIE desgin and then (ii) build the host code.
-
Prepare your enviroment with the mlir-aie tools (built during prerequisites part of this guide) - see "Setting Up Your Environment" avove.
-
Goto the design of interest and run
make
Note that your design of interest might need an adapted
CMakeLists.txt
file. Also pay attention to accurately set the paths CMake parametersBOOST_ROOT
,XRT_INC_DIR
andXRT_LIB_DIR
used in theCMakeLists.txt
, either in the file or as CMake command line parameters.
-
Build: Goto the same design of interest folder where the AIE design just got built (see above)
make <testName>.exe
Note that the host code target has a
.exe
file extension even on Linux. Although unusual, this is an easy way for us to distinguish whether we want to compile device code or host code. -
Run (program arguments are just an example for add_one design)
cd Release .\<testName>.exe -x ..\..\build\final.xclbin -k MLIR_AIE -i ..\..\build\insts.txt -v 1
It is possible to hang the NPU in an unstable state. To reset the NPU:
sudo rmmod amdxdna.ko
sudo insmod $XDNA_SRC_DIR/build/Release/bins/driver/amdxdna.ko
If you installed the AMD XDNA™ driver using .deb
packages as outlined above, and insmod
does not work, you may instead want to try:
sudo modprobe -r amdxdna
sudo modprobe -v amdxdna
The v++
compiler for the NPU device code requires a valid Vitis license. If you are getting errors related to this:
- You have obtained a valid license, as described above.
- Make sure you have set the environment variable
LM_LICENSE_FILE
to point to your license file, see above. - Make sure the ethernet interface whose MAC address you used to generate the license is still available on your machine. For example, if you used the MAC address of a removable USB Ethernet adapter, and then removed that adapter, the license check will fail. You can list MAC addresses of interfaces on your machine using
ip link
.
Copyright© 2019-2024 AMD