Open report from .rpx file
Syntax
open_report [‑file <arg>] [‑append] [‑console] [‑name <arg>]
[‑return_string] [‑quiet] [‑verbose] <rpx>
Usage
Name | Description |
---|---|
[-file]
|
Filename to output results to |
[-append]
|
Append the results to file, don't overwrite the results file |
[-console]
|
Send output to console |
[-name]
|
Output the results to GUI panel with this name |
[-return_string]
|
Return report as string |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<rpx>
|
Report data file to be read |
Categories
Description
Read an RPX (protobuf) file into memory to reload report results into the Vivado Design Suite. This command requires an open implemented or synthesized design.
The RPX file is written by report commands such as report_timing_summary
, and report_pulse_width
, that support the -rpx
option, and is an interactive report file that can be reloaded into memory. Reloading the report into memory, reconnects the objects in the report to design objects so that cross-selection between the report in the Vivado IDE and the design is enabled.
This command returns the report results to the Tcl console by default, or when -console
is specified, or opens a report window in the Vivado IDE when -name
is specified. This command returns an error if it fails.
Arguments
-file
<arg> - (Optional) Write the 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.
-console
- (Optional) Output the report results to the Tcl console in the Vivado IDE or Tcl shell mode. This is the default behavior of the open_report
command if no other options are specified.
-name
<arg> - (Optional) Specifies the name of the results set for the GUI. Timing summary reports in the GUI can be deleted by the delete_timing_results
command.
-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.
-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
open_report -name RPX1 design1_summary.rpx