Report settings affecting timing analysis
Syntax
report_config_timing [‑file <arg>] [‑append] [‑name <arg>] [‑return_string]
[‑all] [‑no_header] [‑rpx <arg>] [‑quiet] [‑verbose]
Usage
Name | Description |
---|---|
[-file]
|
Output the results to file |
[-append]
|
Append the results to file, don't overwrite the results file |
[-name]
|
Output the results to GUI panel with this name |
[-return_string]
|
Return report as string |
[-all]
|
Report all configuration settings (by default, only the typically important settings are reported |
[-no_header]
|
Do not generate a report header |
[-rpx]
|
Filename to output interactive results to. |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
Description
Report the configuration of timing constraints of the current design.
By default the report is abbreviated, containing only a few key timing constraints. Use the -all
argument to return all timing related configuration.
Arguments
-file <arg>
- (Optional) Write the timing constraints configuration report into the specified file. The specified file will be overwritten if one already exists, unless -append
is also specified.
-append
- (Optional) Append the output of the command to the specified file rather than overwriting it.
-append
option can only be used with the -file
option.
-name <arg>
- (Optional) The name of the results to output to the GUI.
-return_string
- (Optional) Directs the output to a Tcl string rather than to the standard output. The Tcl string can be captured by a variable definition and parsed or otherwise processed.
-file
option.
-all
- (Optional) Reports the state of all timing related attributes and constraints in the design. By default, only a limited set of important timing attributes is reported.
-no_header
- (Optional) Disables the report header. By default the report includes a header that lists:
- Report Type - timer_configuration.
- Design - The top module of the design.
- Part - The device, package, and speed grade of the target part.
- Version - The version of software used to create the report
- Date - The date of the report.
- Command - The command options used to create the report.
-rpx <arg>
- (Optional) Specify the file name and
path of the report file (RPX) to write. This is different from writing the report
results to a file using the -file
argument. The RPX file is an
interactive report that contains all the report information and can be reloaded into
memory in the AMD Vivado™ Design Suite using the open_report
command. You should add a .rpx file extension to the specified
file name, as the Vivado tool will not automatically assign a file extension.
-quiet
- (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
-verbose
- (Optional) Temporarily override any message limits and return all messages from this command.
set_msg_config
command.Examples
The following example reports the current timing configuration, returns the information as a string, and sets that string into the specified Tcl variable:
set timeConfig [report_config_timing -all -no_header -return_string]
puts $timeConfig