Step 4: Create the Application Component - 2023.2 English

Vitis Tutorials: AI Engine (XD100)

Document ID
XD100
Release Date
2024-03-05
Version
2023.2 English

The Application component is an application that runs on the processor, Arm or x86, that loads and runs the device binary (.xclbin) which you will build later. The Vitis unified IDE automatically detects whether the Application component uses XRT native API or OpenCL and compiles the code as needed. Create the Application component using the following steps:

  1. From the main menu select File > New Component > Application

    This opens the Create Application Component wizard on the Name and Location page.

  2. Enter the Component name as host, enter the Component location as the workspace (default), and click Next.

    This opens the Select Platform page.

  3. On the Select Platform page select the xilinx_vck190_base_20xxx0_1 platform and click Next to open the Select Domain page.

    On the Select Domain page you will select from the available processor domains and OS. In this case there is only one choice.

  4. Select the xrt domain and click Next to open the Sysroot page.

    On the Sysroot page you will provide a path to the sysroot as part of the common images for the selected platform. You can find more information on this at Installing Embedded Platforms.

    Enter the path to the Sysroot for the selected platform and click Next to open the Summary page.

  5. Review the Summary page and click Finish to create the defined Application component.

    The Application component vitis-comp.json file is opened in the center editor, and the component is added to the Component Explorer. When creating the Application component you do not specify source files so you must add the required source files after the component is created.

    Unified IDE - Application Sources

In the Vitis Components Explorer view, expand the host component, right-click the Sources folder and Import Source > Files to import the following source files:

<tutorial_path>/09-debug-walkthrough/cmd_src/sw/host.cpp
<tutorial_path>/09-debug-walkthrough/cmd_src/sw/data.h

NOTE: If your design uses the ADF API to control the AI Engine then you must also import the aie_control_xrt.cpp file into your Application component Sources folder. Refer to Host Programming on Linux for more information. This design uses the XRT native API and so does not require it.