Description
Removes one or more QoR check from Vivado. This command is only operated on user-created checks. Factory checks can not be deleted.
Arguments
<IDs> - Specifies a list of QoR check names to delete.
-type - (Optional) Specifies the type of checks to delete. Valid
values are either "suggestion" or "assessment." The default value is "suggestion"
and the command only deletes suggestion type checks.Note: You
can assign the same name to both assessment and suggestion checks. To delete any
assessment type checks, use the
-type assessment
switch.Examples
The following example registers a new suggestion called
RQS_NETLIST_AMD-1. It includes a proc called
unroll_srl_to_input which is inside
unroll_srl_to_input.tcl file. It sets the applicable value to
opt_design, adds description, summary, and suggestion to the
Netlist category.
source unroll_srl_to_input.tcl
set af [list opt_design]
set cat Netlist
set desc "Unroll SRL inputs when driving by a LUT"
create_qor_check -name RQS_NETLIST_AMD-1 -rule_body unroll_srl_to_input -property_values [list APPLICABLE_FOR $af CATEGORY $cat DESCRIPTION $desc]
The following example deletes the check after it is created:
delete_qor_checks -type suggestion RQS_NETLIST_AMD-1