[Newbies] Speed

K. K. Subramaniam subbukk at gmail.com
Sat Nov 14 04:50:40 UTC 2009


On Friday 13 November 2009 04:05:08 pm John Worden wrote:
> Squeak 5600 - 5800 milliseconds
> Pharo 5400 - 5500 milliseconds
> Cuis 200 - 500 milliseconds
> 
> So there was a factor of 10 in it which I why I noticed I guess.
You may want to drill down the timing differences using:

MessageTally spyOn: [ .... ]
or
TimeProfileBrowser spyOn: [ ... ]

This will give you detailed breakup of time spent in message sends and the 
memory stress.

Squeak and Pharo images are much bigger than Cuis so they may take up a larger 
portion of the memory resulting in frequent calls to GC. If you notice a 
difference in GC calls, you may want to repeat the trials with larger memory 
for the larger images.

Subbu


More information about the Beginners mailing list