add_qor_checks - 2025.1 English - UG835

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2025-06-16
Version
2025.1 English

Description

Adds one or more QoR checks to a QoR rule deck.

Arguments

-ruledeck <arg> - (Required) Name of the ruledeck to add the QoR checks.

<IDs> - (Required) Specifies the list of QoR check IDs to add to the specified rule deck.

Examples

The following shows an example of registering a new suggestion called RQS_NETLIST_AMD-1. It takes proc called unroll_srl_to_input which is inside unroll_srl_to_input.tcl file. It sets the applicable for value to opt_design, adds description, summary, and the 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]
create_qor_ruledeck AMD_Netlist_OptDesign
The following example verifies that the RQS_NETLIST_AMD-1 check is now added to a new rule deck AMD_Netlist_OptDesign:
add_qor_check -ruledeck AMD_Netlist_OptDesign RQS_NETLIST_AMD-1