User-managed RTL kernels are only supported in host applications written with the XRT native API, as described in the XRT documentation. The XRT native API provides a rich set of class objects and functions for XRT-managed kernels, as discussed in the XRT Native API Host Application tutorial, and for user-managed kernels as described here.
Open the reference-files/src/host/user-host.cpp
file to examine its content and structure. As decribed in Host Programming in the Vitis Application Acceleration Development Flow Documentation (UG1393), there are several key steps the host application must follow:
Specifying the accelerator device ID and loading the
.xclbin
Setting up the kernel and kernel arguments
Transferring data between the host and kernels
Running the kernel and returning results
This tutorial will walk you through each of these, and discuss the requirements of these steps when working with user-managed RTL kernels.