Commit 76555884 authored by Rob Pike's avatar Rob Pike

meteor-contest

R=rsc
DELTA=1276  (1275 added, 0 deleted, 1 changed)
OCL=32851
CL=32854
parent 2b87d95f
This diff is collapsed.
This diff is collapsed.
2098 solutions found
0 0 0 0 1
2 2 2 0 1
2 6 6 1 1
2 6 1 5 5
8 6 5 5 5
8 6 3 3 3
4 8 8 9 3
4 4 8 9 3
4 7 4 7 9
7 7 7 9 9
9 9 9 9 8
9 6 6 8 5
6 6 8 8 5
6 8 2 5 5
7 7 7 2 5
7 4 7 2 0
1 4 2 2 0
1 4 4 0 3
1 4 0 0 3
1 1 3 3 3
...@@ -80,3 +80,9 @@ mandelbrot 5500 ...@@ -80,3 +80,9 @@ mandelbrot 5500
gccgo -O2 mandelbrot.go 57.49u 0.01s 57.51r gccgo -O2 mandelbrot.go 57.49u 0.01s 57.51r
gc mandelbrot 74.32u 0.00s 74.35r gc mandelbrot 74.32u 0.00s 74.35r
gc_B mandelbrot 74.28u 0.01s 74.31r gc_B mandelbrot 74.28u 0.01s 74.31r
meteor 16000
gcc -O2 meteor-contest.c 0.10u 0.00s 0.10r
gccgo -O2 meteor-contest.go 0.12u 0.00s 0.14r
gc meteor-contest 0.24u 0.00s 0.26r
gc_B meteor-contest 0.23u 0.00s 0.24r
...@@ -103,9 +103,17 @@ mandelbrot() { ...@@ -103,9 +103,17 @@ mandelbrot() {
run 'gc_B mandelbrot' $O.out -n 16000 run 'gc_B mandelbrot' $O.out -n 16000
} }
meteor() {
echo 'meteor 16000'
run 'gcc -O2 meteor-contest.c' a.out
run 'gccgo -O2 meteor-contest.go' a.out
run 'gc meteor-contest' $O.out
run 'gc_B meteor-contest' $O.out
}
case $# in case $# in
0) 0)
run="fasta revcom nbody binarytree fannkuch regexdna spectralnorm knucleotide mandelbrot" run="fasta revcom nbody binarytree fannkuch regexdna spectralnorm knucleotide mandelbrot meteor"
;; ;;
*) *)
run=$* run=$*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment