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
<name> - Specifies the QoR check name.
Examples
The following example registers a new suggestion called
RQS_NETLIST_AMD-1. It takes proc called
unroll_srl_to_input which is inside file
unroll_srl_to_input.tcl. It sets the applicable for 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 RQS_NETLIST_AMD-1