Configuration File xrt.ini¶
XRT uses various parameters to control execution flow, debug, profiling, and message logging during host application and kernel execution in software emulation, hardware emulation, and system run on the acceleration board. These control parameters are optionally specified in a runtime initialization file xrt.ini
XRT looks for xrt.ini in host executable path and current directory in that order. It stops search when an xrt.ini is found. If xrt.ini is not found, XRT built-in defaults are used as described in the table below.
Runtime Initialization File Format¶
The runtime initialization file is a text file with groups of keys and their values. Any line beginning with a semicolon (;) or a hash (#) is a comment. The group names, keys, and key values are all case in-sensitive.
There are three group of keys as below
- Runtime: The keys in this group impact general XRT flow
- Debug: The keys in this group are used to generate and configure the debug related files such as profile report and timeline trace
- Emulation: The keys in this group are related to the Emulation flow only
The following is a simple example that turns on profile timeline trace and sends the runtime log messages to the console.
#Start of Runtime group
[Runtime]
runtime_log = console
#Start of Debug group
[Debug]
timeline_trace = true
API Support: From 2020.2 release the runtime configuration options can also be provided through C or C++ APIs.
C APIs
xrtIniStringSet
: Set a key and correspondong string value pairxrtIniUintSet
: Set a key and corresponding integer value pair
C++ API
xrt::ini::set
Example
xrt::ini::set("Runtime.runtime_log", "console");
xrt::ini::set("Runtime.verbosity", 5);
The following table lists all supported groups, keys, valid key values, and short descriptions on the function of the keys.
Runtime Group¶
Key | Valid Values | Description |
---|---|---|
api_checks | [true|false] | Enable or disable OpenCL API checks:
Default: true |
runtime_log | [null|console|syslog|filename] | Specify where the runtime logs are printed:
Default: console |
cpu_affinity | [{N,N,…}] | Pin all runtime threads to specified CPUs. Example: cpu_affinity = {4,5,6} |
verbosity | [0|1|2|3|4|5|6|7] | verbosity level of log messages. Higher number implies more verbosity Default: 4 |
exclusive_cu_context | [false|true] | When setting true OpenCL process holds exclusive access of the Compute Units Default: false |
Debug Group¶
Key | Valid Values | Description |
---|---|---|
profile | [true|false] | Enable or disable OpenCL host code profile. Set true to generate profile_summary report Default: false |
timeline_trace | [true|false] | Enable or disable profile timeline trace. Set true to generate timeline_trace report Default: false |
data_transfer_trace | [coarse|fine|off] | Enable device-level AXI transfers trace:
Default: off |
stall_trace | [dataflow|memory|pipe|all|off] | Specifies type of stalls to be captured in timeline trace report:
Default: off |
app_debug | [true|false] | If true, enable xprint and xstatus command during debugging with xgdb Default: false |
trace_buffer_size | [N {K|M|G}] | Specifies the size of DDR/HBM memory for storing trace data:
Note:
Example: trace_buffer_size=100M Default: 1M |
lop_trace | [false|true] | Enables or disables low overhead profiling.
Default: false |
continuous_trace | [false|true] | Enables the continuous offload of the device data while the application is running. In the event of a crash/hang a trace file will be available to help debugging.
|
continuous_trace_inte- rval_ms | [N] | Specifies the interval in millisecond to offload the device data in continous trace mode (see above)
|
Emulation Group¶
Key | Valid Values | Description |
---|---|---|
aliveness_message_interval | [N] | Specify the interval in seconds that aliveness messages need to be printed. Default:300 |
print_infos_in_console | [true|false] | Controls the printing of emulation info messages to users console.
Default: true |
print_warning_in_console | [true|false] | Controls the printing of emulation warning messages to users console.
Default: true |
print_errors_in_console | [true|false] | Controls the printing of emulation error messages to users console.
Default: true |
launch_waveform | [off|batch|gui] | Specify how the waveform is saved and displayed during emulation:
Default: off
|
timeout_scale | [na|ms|sec|min] | Specify the time scaling unit of timeout specified clPollStreams command, otherwise Emulation does not support timeout specified in clPollStreams command
|