Altera_Forum
Honored Contributor
18 years agosame constraint, different compiling time
My system has 360 input signal and need to be constraint as clock.
I use the following two method to create clock:
method 1:
create_clock -name {FREQMeasure_ChannleIn} -period 10000.000 -waveform { 0.000 5000.000 } }]
method 2:
set FREQMeasure_Total_Channel 360
for {set loop 0} {$loop < $FREQMeasure_Total_Channel} {incr loop} {
puts "loop is $loop"
create_clock -name FREQMeasure_ChannleIn_Clk -period 100000.000 FREQMeasure_ChannleIn
} Compiling elapsed time for method 1 is 50 minutes. Compiling elapsed time for method 2 is 80 minutes. the result for two compilation are the same. Is there anything I should take into account?