in reply to Re^2: Perl script speed
in thread Perl script speed
Am I right in thinking that some of lines only have 16 columns, ie no adjustment ?
Update:COLUMNS {instance} {fpin} {fedge} {tpin} {tedge} {net} {cell} {del +ay} {incr_delay} {slew} {load} {arrival} {required} {stolen} {fanout} + {pin_location} {adjustment}
andif ($l=~/adjustment/) { $flag=1; }
pojif ($flag==1 && $_=~/INST/) { for($i=0;$i<$#parts-2;++$i) { push(@data,$parts[$i]); } push(@data,"$parts[$i]$parts[$i+1]"); push(@data,$parts[$i+2]); } else { foreach $l (@parts) { push(@data,$l); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl script speed
by rr27 (Initiate) on Jun 02, 2014 at 13:11 UTC | |
by poj (Abbot) on Jun 02, 2014 at 15:43 UTC |