Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Steven Costiou
Thank you all for your answers :) I will have a look into all that :) Steven.

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Ben Coman
On Thu, May 25, 2017 at 6:51 PM, Steven Costiou wrote: > Hi, > > is there any benchmark library for Pharo ? that would provide tools to > choose metrics to measure between two versions of the same code and maybe > display a comparison or something (whatever the form of

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread p...@highoctane.be
You can do things like: MessageTally spyOn: [ 1 to: 1000 do: [ :i | i primeFactors logCr ] ]. or AndreasSystemProfiler spyOn: [ 1 to: 1000 do: [ :i | i primeFactors logCr ] ]. See https://www.youtube.com/watch?v=aiA8GblEw00 or [ 1000 primeFactors ] benchFor: 5 seconds --> "a

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Stephane Ducasse
Check Smark and clement and vm guys has a lot of benchmarks On Thu, May 25, 2017 at 12:51 PM, Steven Costiou wrote: > Hi, > > is there any benchmark library for Pharo ? that would provide tools to > choose metrics to measure between two versions of the same code and

[Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Steven Costiou
Hi, is there any benchmark library for Pharo ? that would provide tools to choose metrics to measure between two versions of the same code and maybe display a comparison or something (whatever the form of the report) ? I've found BenchmarkResult in Pharo but it seems very basic, at least there