Understanding the Vitis Programming and Execution Model - 2023.2 English

Vitis Tutorials: Getting Started (XD098)

Document ID
XD098
Release Date
2023-11-13
Version
2023.2 English

A Vitis accelerated application consists of two distinct components: a software program and an FPGA binary containing hardware accelerated kernels.

  • The software program is written in C/C++ and runs on a conventional CPU. The software program uses user-space APIs implemented by the AMD Runtime library (XRT) to interact with the acceleration kernel in the FPGA device.

  • The hardware accelerated kernels can be written in C/C++ or RTL (Verilog or VHDL) and run within the programmable logic part of the FPGA device. The kernels are integrated with the Vitis hardware platform using standard AXI interfaces.

    img

Vitis accelerated applications can execute on either data center or embedded acceleration platforms:

  • On data center platforms, the software program runs on an x86 server, and the kernels run in the FPGA on a PCIe®-attached acceleration card.

  • On embedded platforms, the software program runs on an ARM processor of a AMD MPSoC device and the kernels run within the same device.

Because the software and hardware components of a Vitis application use standardized interfaces (XRT APIs and AXI protocols) to interact with each other, the user’s source code remains mostly agnostic of platform-specific details and can be easily ported across different acceleration platforms.

There are multiple ways by which the software program can interact with the hardware kernels. The simplest method can be decomposed into the following steps:

  1. The host program writes the data needed by a kernel into the global memory of FPGA device.

  2. The host program sets up the input parameters of the kernel.

  3. The host program triggers the execution of the kernel.

  4. The kernel performs the required computation, accessing global memory to read or write data, as necessary. Kernels can also use streaming connections to communicate with other kernels.

  5. The kernel notifies the host that it has completed its task.

  6. The host program can transfer the data from global memory to host memory or can give ownership of the data to another kernel.