Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP Speed
Message
From
03/02/2012 15:03:45
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
VFP Speed
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01534425
Message ID:
01534425
Views:
188
Hi All,

I am doing a raw speed test on some very simple operations to compare basic VFP operations with another language. Would some of you care to do a similar test against another language of your choice? e.g. Python, PHP, VB.Net, whatever. I am looking for VFP speed vs. language_of_your_choice speed on the same machine. Here are two simple tests manipulating some numbers and building a string in VFP
CLEAR
tStartTime = SECONDS()
ta=0
FOR i = 1 TO 1000000
  ta = Log(i) + Cos(i) + Sin(i) + Log(i) + exp(i)
next  
? SECONDS() - tStartTime 

*

tStartTime = SECONDS()
ta = ""
FOR i = 1 TO 1000000
  ta = ta + "xx"
next  
? SECONDS() - tStartTime 
In the End, we will remember not the words of our enemies, but the silence of our friends - Martin Luther King, Jr.
Next
Reply
Map
View

Click here to load this message in the networking platform