Performing Resource Analysis - 2023.2 English

Vitis Model Composer User Guide (UG1483)

Document ID
UG1483
Release Date
2023-11-15
Version
2023.2 English

Resource analysis can be performed whenever you generate any of the following compilation targets:

  • IP catalog
  • Hardware Co-Simulation
  • Synthesized Checkpoint
  • HDL Netlist

To perform resource analysis in Vitis Model Composer:

  1. Double-click the Model Composer Hub block in the Simulink model.
  2. Select the following in the Model Composer Hub dialog box dialog box:
    1. In the Hardware Selection tab:
      1. Click the button next to the Select Hardware box to open the Device Chooser.
      2. Specify the Part in which your design will be implemented.
        Note: If you select a Board or Platform instead of a Part, the Part field will be populated with the name of the part on the selected Board or Platform.
    2. In the Code Generation/HDL Settings tab:
      1. Select one of the Compilation Types. Model Composer can perform resource analysis for any Compilation Type you select.
      2. Specify a Code Directory.
    3. In the Code Generation/HDL Analysis tab:
      1. Set the Perform Analysis field to Post Synthesis or Post Implementation based on the runtime versus accuracy tradeoff.
      2. Set the Analysis type field to Resource.
    Figure 1. Resource Analyzer
  3. In the Model Composer Hub dialog box, click Generate.

    When you generate, the following occurs:

    1. Model Composer generates the required files for the selected compilation target. For resource analysis Model Composer invokes Vivado in the background for the design project.
    2. Depending on your selection for Perform analysis (Post Synthesis or Post Implementation), the design runs in Vivado through synthesis or through implementation.
    3. After the Vivado tools run is completed, resource utilization data is collected from the Vivado resource utilization database and saved in a specific file format under the target directory. At the end of the resource utilization data collection the Vivado project is closed and control is passed to the MATLAB/Vitis Model Composer process.
    4. Model Composer processes the resource utilization data and displays a Resource Analyzer table with resource utilization information (see below).
    Figure 2. Resource Analyzer

    In the resource analyzer table:

    • The header section of the dialog box indicates the Vivado design stage after which resource utilization data was collected from Vivado. This will be either Post Synthesis or Post Implementation.
    • The local toolbar contains the following commands to change the display of resource counts:
      • Hierarchical/Flat Display: Toggles the display between a hierarchical tree and a flattened list.
      • Collapse All: Collapses the design hierarchy to display only the top-level objects.
      • Expand All: Expands the design hierarchy at all levels to display resources used by each subsystem and each block in the design.
    • The number shown in each column heading indicates the total number of each type of resource available in the AMD device for which you are targeting your design. In the example below, the design is targeting an AMD Kintex™ 7 FPGA.
      Figure 3. Resource Analysis Report for Kintex 7
    • The example displays a hierarchical listing of each subsystem and block in the design, with the count of the following resource types:
      BRAMs
      block RAM and FIFO primitives.
      block RAMs (BRAMs) are counted in this way.
      Table 1. Number of BRAMs
      Primitive Type # BRAMs
      RAMB36E 1
      FIFO36E 1
      RAMB18E 0.5
      FIFO18E 0.5
      Variations of Primitives (for example, RAM36E1 and RAM36E2) are all counted in the same way.
      Total BRAMs = (Number of RAMB36E) + (Number of FIFO36E) + 0.5 (Number of RAMB18E + Number of FIFO18E)
      DSPs
      DSP48 primitives (DSP48E, DSP48E1, DSP48E2) and DSP58
      Registers
      Registers and Flip-Flops. All primitive names that start with FD* (FDCE, FDPE, FDRE, FDSE, etc.) and LD* (LDCE, LDPE, etc.) are considered as Registers.
      LUTs
      All LUT types combined.
    • The display order can be sorted for any column’s values by clicking the column head.
    • You can cross probe from the table to the Simulink model by selecting a row in the table, which will highlight the corresponding HDL blocks in the Simulink model. See Cross Probing from the Resource Analysis Results to the Model.