Generate Report with a Subset of Clocks
This script shows how to generate a report for a subset of clock indices with the report_timing command.
set file_path "./tests"
set clk_index_list { 0 12 24 }
foreach clk_id $clk_index_list {
report_timing -from_clock [get_clocks clk_in[$clk_id]] -setup -npaths 10 \
-file ${file_path}/test1_clk_in_${clk_id}_path.rpt
}