Recommend QoR Suggestions
Syntax
report_qor_suggestions [‑file <arg>] [‑name <arg>] [‑append]
[‑return_string] [‑max_strategies <arg>] [‑max_paths <arg>] [‑no_split]
[‑report_all_suggestions] [‑cells <args>] [‑of_objects <args>] [‑quiet]
[‑verbose]
Usage
Name | Description |
---|---|
[-file]
|
Filename to output results to. (send output to console if -file is not used) |
[-name]
|
Output the results to GUI panel with this name |
[-append]
|
Append the results to file, don't overwrite the results file |
[-return_string]
|
Return report as string |
[-max_strategies]
|
Number of strategies to suggest Default: 3 |
[-max_paths]
|
Number of paths to consider for suggestion analysis Default: 100 |
[-no_split]
|
Report without spliting the lines in tables |
[-report_all_suggestions]
|
Report all suggestions |
[-cells]
|
Report QOR suggestions for a given cell |
[-of_objects]
|
List of QoR suggestion objects |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
Categories
Description
Report design and tool option recommendations related to improving the quality of results (QoR). The report looks at timing constraints, netlist characteristics, failing timing paths, and congestion information to determine suggestions that can enhance the QoR. The report can be generated after synthesis, or after any implementation step, but requires a design to be open.
The report_qor_suggestions
command creates QoR suggestion objects related to the suggestions identified. These suggestion objects can be enabled for use by the Vivado tools to improve the quality of synthesis and implementation results. Some of these suggestions can be automatically applied, and some may require more manual intervention to implement design changes, or write Tcl design constraints.
Suggestion objects can be obtained using the get_qor_suggestions
command. The QoR objects have properties that define what step they are APPLICABLE_FOR, if they are ENABLED to be used, if they can be automatically applied (AUTO), or what step the suggestions was GENERATED_AT. A suggestion must be ENABLED and the APPLICABLE_FOR synthesis or implementation step run in order for a suggestion to be applied to the design.
You can write the suggestions from the design into an RQS file using the write_qor_suggestions
command. After resetting the design flow to the appropriate step, you can read suggestions back into the design using the read_qor_suggestions
command, and then run the synthesis or implementation step to apply the enabled suggestions.
- Run the report to create recommendations (
report_qor_suggestions
) - Write the suggestions to an RQS file on disk (
write_qor_suggestions
). - Reset the design to the appropriate step.
- Read the RQS file into the design to restore the suggestions (
read_qor_suggestions
). - Run the synthesis or implementation step to apply the suggestion (
synth_design
,opt_design
...).
- either default or explore directives for opt_design and
- either all default or all explore directives for
place_design
,phys_opt_design
, androute_design commands
.
Strategy suggestions do not apply to synthesis. Unlike the non-strategy suggestions, only one strategy suggestion can be applied to each run.
- Run the report to create strategies and other recommendations(
report_qor_suggestions
). - Write the suggestions to a directory disk. There is one RQS file per strategy (
write_qor_suggestions -strategy_dir
). - Update all the directive settings to -directive RQS for
opt_design
,place_design
,phys_opt_design
, androute_design
commands. - For each run, read one RQS file into the design. This will contain the strategy suggestion and all exported non-strategy suggestions(
read_qor_suggestions
). - Run the implementation step from the
opt_design
command to apply the strategy and all the design suggestions.
Arguments
-file
<arg> - (Optional) Write the QOR report into the specified file. The specified file will be overwritten if one already exists, unless -append
is also specified.
-name
<arg> - (Optional) The name of the view to display in the Vivado IDE when run in GUI mode. Only one QoR suggestion report can be opened in the Vivado tool at one time. This makes it different from most other available reports. If there is already an open report in the Report view, that report will be closed and a new report is opened.
-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.-return_string
- (Optional) Direct 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.
-max_strategies
<args> - (Optional) Specify the maximum number of ML strategies returned. The algorithm may generate less than the maximum specified number if not enough suitable strategies are identified. Default is 3.
-max_paths
<arg> - (Optional) Specify the number of critical paths to analyze. The default is the 100 worst timing paths per timing group. Timing paths that have a WNS > 0.000 are ignored unless -report_all_suggestions is set.
-no_split
- (Optional) Do not split the lines in the table when generating the report.
-report_all_suggestions
- (Optional) Relaxes the criteria that suppresses suggestions.
- Utilization suggestions do not need to save a critical resource
- Congestion suggestions are offered on designs when timing is closed
- Timing suggestions on paths that have a WNS < +0.500
-cell
<arg> - (Optional) Report QOR suggestions for the specified hierarchical cell and all data paths passing through it.
-of_objects
<args> - (Optional) Report existing suggestions defined by the specified list of QoR objects as returned by the get_qor_suggestions
command. When -of_objects
is specified, the report does not analyze the design to identify new suggestions, it merely reports the specified existing suggestion objects.
-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
report_qor_suggestions -max_paths 10
report_qor_suggestions
:
report_qor_suggestions -of_objects [get_qor_suggestions]