delete_qor_suggestions - 2022.2 English

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2022-10-19
Version
2022.2 English

Deletes a list of available QoR suggestions

Syntax

delete_qor_suggestions [‑quiet] [‑verbose] [<IDs>]

Usage

Name Description
[-quiet] Ignore command errors
[-verbose] Suspend message limits during command execution
[<IDs>] Match suggestion names against given names

Categories

Object, Feasibility, Timing

Description

Removes QoR suggestion objects that are currently in memory. Suggestion objects are generated by running the report_qor_suggestion command without specifying -of_objects, and by reading an RQS file using the read_qor_suggestions command. You can get QoR objects by using the get_qor_suggestions command.

Arguments

<IDs> - (Required) A list of suggestion object IDs. IDs can be returned using the get_qor_suggestions command.

-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.
Note: Any errors encountered on the command-line, while launching the command, will be returned. Only errors occurring inside the command will be trapped.
-verbose - (Optional) Temporarily override any message limits and return all messages from this command.
Note: Message limits can be defined with the set_msg_config command.

Examples

The following deletes all the suggestion objects in memory:
delete_qor_suggestions [get_qor_suggestions]
The following deletes only the Utilization suggestions:
delete_qor_suggestions [get_qor_suggestions -filter {CATEGORY==Utilization}]