Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Report on WinCE Rebol --- Speed Comparison

From: larry:ecotope at: 27-Jun-2001 20:39

Hi David, I am curious about your results for Core and View on Windows. I defined the following tree-recursive fibonacci function at the console using a 450MHz PIII:
>> fib: func [n][either n < 2 [n] [(fib n - 2) + (fib n - 1)]]
For Core 2.5.0.3.1
>> t: now/time/precise fib 25 now/time/precise - t
== 0:00:01.32
>> t: now/time/precise fib 35 now/time/precise - t
== 0:02:53.78 For View 1.2.1.3.1
>> t: now/time/precise fib 25 now/time/precise - t
== 0:00:01.32
>> t: now/time/precise fib 35 now/time/precise - t
== 0:02:47.03 So the times are pretty much the same for View and Core. Your timings show View to be noticeably slower and even the 800MHz times are slower than mine. Wondering how you did your timing? Did it include starting the exe's? -Larry