On 05 Dec 2003, at 16:02, [EMAIL PROTECTED] wrote:


Message: 8
Date: Fri, 5 Dec 2003 15:25:25 +0100
From: Wouter <[EMAIL PROTECTED]>
Subject: Concerning speedtests
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=US-ASCII; format=flowed


Hi all,


The speedtests that sometimes are proposed are "very" relative.
Certainly in a preemptive multitasking environment with lots of
processes running.
Do a test on the speedtest, repeat a couple of times the following :

on mouseUp
   put the millisecs into zap1
   repeat 100000
     put 1 after x
   end repeat
   put the millisecs into zap2
   repeat 100000
     put 1 after y
   end repeat
   put the millisecs into zap3
   put zap2 - zap1 && zap3 - zap2
end mouseUp


Greetings, WA


A bit less repeat and a bit more comparative speedtesttest :

on mouseUp
  repeat 10
    put the millisecs into zap
    repeat 10000
      put the millisecs into x
    end repeat
    put  the millisecs- zap  after theAnswer
    put  the millisecs into zap
    repeat 10000
      put  the millisecs into x
    end repeat
    put  space & the millisecs - zap & cr after theAnswer
  end repeat
  answer theAnswer
end mouseUp

Greetings,
WA

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to