Other Waiver Commands - 2025.2 English - UG906

Vivado Design Suite User Guide: Design Analysis and Closure Techniques (UG906)

Document ID
UG906
Release Date
2025-12-10
Version
2025.2 English

Return Waiver Objects

The get_waivers command returns a collection of waiver objects. You can filter waivers by type, name, or pattern.

Use the following command to return all DRC waivers:

get_waivers -type DRC
get_waivers -filter {TYPE == DRC}

Use the following command to return all DRC DPIR-2 waivers:

get_waivers DPIR-2#*
get_waivers -filter {ID == DPIR-2}
get_waivers -filter {NAME =~ DPIR-2#*}
Note: The get_waivers command does not return AMD IP waivers.

Remove User Waivers

The delete_waivers command deletes objects returned by get_waivers.

Use the following command to delete all user waivers:

delete_waivers [get_waivers]

Use the following command to delete all CDC waivers:

delete_waivers [get_waivers -type CDC]
Note: You cannot delete AMD IP waivers.