Makoto Kuwata, 26.06.2010 19:09:
I released Benchmarker 1.1.0.
http://pypi.python.org/pypi/Benchmarker/
Benchmarker is a small utility to benchmark your code.
Does it use any statistically sound way to run the benchmarks? It seems to
produce just one number on output, which can be misleading
Terry,
Thank you for trying Benchmarker.
On Sun, Jun 27, 2010 at 7:15 AM, Terry Reedy wrote:
> On 6/26/2010 1:09 PM, Makoto Kuwata wrote:
>>
>> I released Benchmarker 1.1.0.
>> http://pypi.python.org/pypi/Benchmarker/
>>
>> Benchmarker is a small utility to benchmark your code.
>>
>>
>> Example
>
On 6/26/2010 1:09 PM, Makoto Kuwata wrote:
I released Benchmarker 1.1.0.
http://pypi.python.org/pypi/Benchmarker/
Benchmarker is a small utility to benchmark your code.
Example
===
ex.py::
def fib(n):
return n<= 2 and 1 or fib(n-1) + fib(n-2)
from benchmarker import Be
I released Benchmarker 1.1.0.
http://pypi.python.org/pypi/Benchmarker/
Benchmarker is a small utility to benchmark your code.
Example
===
ex.py::
def fib(n):
return n <= 2 and 1 or fib(n-1) + fib(n-2)
from benchmarker import Benchmarker
bm = Benchmarker(30) # or Benchm