Search This Blog

Saturday, February 29, 2020

To report worst slack for a particular timing groups

Write a script to report the clock group worst slack

set_global timing_report_group_based_mode true
                foreach_in_collection path [sort_collection [report_timing -max_slack 100-collection]            path_group] {

                               set size [sizeof_collection $path]
                               set path_group [get_property -quiet $path path_group_name]
                               set wns [get_property -quiet $path slack]
                               set view [get_property -quiet $path view_name]

                               puts "Clock group: $path_group View: $view WNS: $wns"
}

No comments:

Post a Comment

What is the sanity checks you have done for STA?

 Sanity checks for STA: Linking Checks: We need to check., is there any missing modules or missing pins in a library. this is done by link c...