Changes between Version 21 and Version 22 of Tutorials/Edge Computing/Alveo Getting Started


Ignore:
Timestamp:
Dec 6, 2019, 5:15:37 PM (4 years ago)
Author:
prasanthi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Edge Computing/Alveo Getting Started

    v21 v22  
    188188[[CollapsibleStart(Analyze FPGA kernel performance)]]
    189189* Vitis platform provides options to generate various reports which help understand and analyze the accelerated application. Profile summary, timeline trace, waveform view are a few of them. Vitis analyzer can be used to view these reports.
    190 * Resource estimate
    191 * Waveform view
    192 
    193 [[CollapsibleEnd]]
     190* System estimate report is generated while building the hardware target xclbin file. It gives information on the resource usage, clock frequency, kernel latency estimate, etc.
     191{{{
     192root@node1-6:~/Vitis-Tutorials/docs/Pathway3/reference-files/run# vitis_analyzer mmult.hw.xilinx_u200_xdma_201830_2.xclbin.link_summary
     193}}}
     194
     195* Waveform view - While generating the hardware emulation target, waveform view can be enabled by editing the xrt.ini file. This option displays kernel signals in a waveform view while running hardware emulation. Hardware emulation can be run as follows
     196{{{
     197export XCL_EMULATION_MODE=hw_emu
     198./host mmult.hw_emu.xilinx_u200_xdma_201830_2.xclbin
     199}}}
     200
     201[[CollapsibleEnd]]