Altera Quartus II Scripting Manual de usuario Pagina 393

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 634
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 392
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
Vista de pagina 392
1 2 ... 388 389 390 391 392 393 394 395 396 397 398 ... 633 634

Comentarios a estos manuales

Sin comentarios