[Shootout-list] main score page layout

Einar Karttunen ekarttun@cs.helsinki.fi
Fri, 25 Jun 2004 11:23:18 +0300


On 24.06 12:13, Isaac Gouy wrote:
> On the test pages, like
>    http://shootout.alioth.debian.org/bench/ackermann/
> 
> the numeric table columns are left-aligned, it would be easier to read
> if they were right-aligned.
> 
> The fastest 10 implementations often show the same CPU - maybe it's
> worth showing 3 decimal places.

Or making N larger... to make the differences real. I think many tests
would benefit from a graph that shows results with different values of
N. The time/N is not constant ;)

e@rei:~/oz$ time ./prodcons 100000
100000 100000

real    0m0.065s
user    0m0.039s
sys     0m0.026s
e@rei:~/oz$ time ./prodcons 1000000
1000000 1000000

real    0m0.248s
user    0m0.215s
sys     0m0.033s
e@rei:~/oz$ time ./prodcons 10000000
10000000 10000000

real    0m2.047s
user    0m1.950s
sys     0m0.096s
e@rei:~/oz$ 

- Einar Karttunen