Hi guys, I am new to pnr. I am currently doing few different floorplans till CTS. I am using icc2 shell. I want to find the total net routing length in the design. Can any one help me how to find total net routing length.
Hi Ashok, This command will give only length of a selected net right. But i want total nets routing length in the whole design . Is there any script for this?
foreach_in_collection a [get_nets] {
set netname [get_object_name $a]
set netlength [get_attribute [get_nets $netname] dr_length]
puts "the length of the net:$netname is:$netlength"
}
Hi Ashok, This command will give only length of a selected net right. But i want total nets routing length in the whole design . Is there any script for this?
Hi Ashok, This command will give only length of a selected net right. But i want total nets routing length in the whole design . Is there any script for this?
foreach_in_collection a [get_nets] {
set netname [get_object_name $a]
set netlength [get_attribute [get_nets $netname] dr_length]
puts "the length of the net:$netname is:$netlength"
}