Advanced Configuration

This is simple example to describe how user can provide various advanced options in Vitis flow.

KEY CONCEPTS: Using custom Tcl, Setting Kernel Clock Frequency, Clock Uncertainity

KEYWORDS: config, set_clock_uncertainity, clock, freqHz, hls.pre_tcl

This is a simple example to describe how user can provide various advanced options in Vitis flow. The same can be achieved by the inclusion of cfg or tcl files.

User can customize the clock_uncertainity using ‘set_clock_uncertainty’. Following is the content of my_directives.tcl file

set_clock_uncertainty 0.370

The clock uncertainty setting needs to be specified in my_directives.tcl file. We include this tcl file in our vadd_vadd.cfg file and specify the kernel_frequency and clock uncertainity.

Following are the contents of cfg file for SoC Platforms -

[clock]
freqHz=280000000:vadd_1

[hls]
pre_tcl=my_directives.tcl

Following are the contents of cfg file for PCIe Platforms -

kernel_frequency=0:280

[hls]
pre_tcl=my_directives.tcl

EXCLUDED PLATFORMS

Platforms containing following strings in their names are not supported for this example :

nodma

DESIGN FILES

Application code is located in the src directory. Accelerator binary files will be compiled to the xclbin directory. The xclbin directory is required by the Makefile and its contents will be filled during compilation. A listing of all the files in this example is shown below

src/host.cpp
src/vadd.cpp

Access these files in the github repo by clicking here.

COMMAND LINE ARGUMENTS

Once the environment has been configured, the application can be executed by

./advanced_config <vadd XCLBIN>