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

Page 393: Description, Example, Get_timing_analysis_summary_results –263

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–263

report

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

get_timing_analysis_summary_results

Usage

get_timing_analysis_summary_results [-actual] [-clock_hold <clock_hold>] [-clock_setup
<clock_setup>] [-min_tco] [-min_tpd] [-required] [-slack] [-tco] [-th] [-tpd] [-tsu]

Options

-actual: Actual time

-clock_hold <clock_hold>: Clock hold name

-clock_setup <clock_setup>: Clock setup name

-min_tco: Minimum clock to output delay

-min_tpd: Minimum propagation delay

-required: Required time

-slack: Slack

-tco: Clock to output delay

-th: Hold time

-tpd: Propagation delay

-tsu: Setup time

Description

Gets the Timing Analysis Summary results. This command uses the "get_report_panel_data" command to
access the Timing Analysis Summary panel. It provides easy access to the panel data without the need to
know the names of the corresponding row and column.

You must use one of the following options: "-tsu", "-tco", "-tpd", "-th", "-min_tco", "-min_tpd",
"-clock_setup", or "-clock_hold".

You also must use one of the following options: "-slack", "-required" or "-actual".

Clock names support wildcards.

Example

load_package report
project_open chiptrip
load_report

# Shortcut of get_timing_analysis_summary_results command
set cmd get_timing_analysis_summary_results

# Get actual tsu, clock slack, and required tco
set act_tsu [$cmd -tsu -actual]
set clock [$cmd -clock_setup {[Cc]lock} -actual]
set req_tco [$cmd -tco -required]
puts "Actual tsu: $act_tsu"
puts "Actual clock setup: $clock"
puts "Required tco: $req_tco"

unload_report
project_close

Advertising