Load_report, Usage, Options – Altera Quartus II Scripting User Manual

Page 394: Description, Example, Load_report –264

Advertising
background image

3–264

Chapter 3: Tcl Packages & Commands

report

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

load_report

Usage

load_report [-simulator]

Options

-simulator: Option to load the Simulation Report. If this option isn't specified, the
Compilation Report is loaded instead.

Description

By default, loads the Compilation Report for the current revision or the specified revision name. If the
-simulator option is specified, loads the Simulation Report instead.

After the report is loaded or reloaded, the cached panel ids, and row and column indices may become
outdated or invalid. Altera recommends that you update them before using them.

Example

# Load report package
load_package report
# Open chiptrip project
project_open chiptrip
# Load the current revision report
load_report

# Set panel name and id
set panel {Fitter||Fitter Summary}
set id [get_report_panel_id $panel]

# Get total logic elements
set rname {Total [Ll]ogic [Ee]lements}
set rindex [get_report_panel_row_index -id $id $rname]
set rname [get_report_panel_data -id $id -row $rindex -col 0]
set data [get_report_panel_data -id $id -row $rindex -col 1]
puts "$rname: $data"

# Get total pins
set rname {Total [Pp]ins}
set rindex [get_report_panel_row_index -id $id $rname]
set rname [get_report_panel_data -id $id -row $rindex -col 0]
set data [get_report_panel_data -id $id -row $rindex -col 1]
puts "$rname: $data"

# Unload the report
unload_report
# Close the project
project_close

Advertising