Skip to content

Instantly share code, notes, and snippets.

@ajstarks
Last active August 2, 2016 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajstarks/fa05919377de73a552870ce9e45e4844 to your computer and use it in GitHub Desktop.
Save ajstarks/fa05919377de73a552870ce9e45e4844 to your computer and use it in GitHub Desktop.
Pine64 Go1 Benchmarks
# go 1.6.2
ajstarks@localhost:~/go/test/bench/go1$ go test -bench=.
testing: warning: no tests to run
PASS
BenchmarkBinaryTree17-4 1 31246864000 ns/op
BenchmarkFannkuch11-4 1 26586101000 ns/op
BenchmarkFmtFprintfEmpty-4 3000000 425 ns/op
BenchmarkFmtFprintfString-4 1000000 1750 ns/op
BenchmarkFmtFprintfInt-4 1000000 1586 ns/op
BenchmarkFmtFprintfIntInt-4 500000 2676 ns/op
BenchmarkFmtFprintfPrefixedInt-4 500000 2454 ns/op
BenchmarkFmtFprintfFloat-4 500000 3415 ns/op
BenchmarkFmtManyArgs-4 200000 10732 ns/op
BenchmarkGobDecode-4 20 79947500 ns/op 9.60 MB/s
BenchmarkGobEncode-4 20 58372150 ns/op 13.15 MB/s
BenchmarkGzip-4 1 3442714000 ns/op 5.64 MB/s
BenchmarkGunzip-4 2 628338500 ns/op 30.88 MB/s
BenchmarkHTTPClientServer-4 5000 748732 ns/op
BenchmarkJSONEncode-4 10 157477100 ns/op 12.32 MB/s
BenchmarkJSONDecode-4 2 594326500 ns/op 3.26 MB/s
BenchmarkMandelbrot200-4 30 40213566 ns/op
BenchmarkGoParse-4 50 32719960 ns/op 1.77 MB/s
BenchmarkRegexpMatchEasy0_32-4 2000000 770 ns/op 41.55 MB/s
BenchmarkRegexpMatchEasy0_1K-4 300000 5370 ns/op 190.66 MB/s
BenchmarkRegexpMatchEasy1_32-4 2000000 841 ns/op 38.05 MB/s
BenchmarkRegexpMatchEasy1_1K-4 200000 7512 ns/op 136.31 MB/s
BenchmarkRegexpMatchMedium_32-4 1000000 1350 ns/op 0.74 MB/s
BenchmarkRegexpMatchMedium_1K-4 3000 432227 ns/op 2.37 MB/s
BenchmarkRegexpMatchHard_32-4 50000 25760 ns/op 1.24 MB/s
BenchmarkRegexpMatchHard_1K-4 2000 787409 ns/op 1.30 MB/s
BenchmarkRevcomp-4 1 6701817000 ns/op 37.93 MB/s
BenchmarkTemplate-4 2 664473000 ns/op 2.92 MB/s
BenchmarkTimeParse-4 500000 3357 ns/op
BenchmarkTimeFormat-4 500000 3389 ns/op
ok _/home/ajstarks/go/test/bench/go1 135.110s
# go 1.7beta2
BenchmarkBinaryTree17-4 1 29936810000 ns/op
BenchmarkFannkuch11-4 1 26583579000 ns/op
BenchmarkFmtFprintfEmpty-4 3000000 416 ns/op
BenchmarkFmtFprintfString-4 1000000 1468 ns/op
BenchmarkFmtFprintfInt-4 1000000 1369 ns/op
BenchmarkFmtFprintfIntInt-4 1000000 2252 ns/op
BenchmarkFmtFprintfPrefixedInt-4 1000000 2192 ns/op
BenchmarkFmtFprintfFloat-4 500000 2959 ns/op
BenchmarkFmtManyArgs-4 200000 9420 ns/op
BenchmarkGobDecode-4 20 86769650 ns/op 8.85 MB/s
BenchmarkGobEncode-4 20 61062450 ns/op 12.57 MB/s
BenchmarkGzip-4 1 4025708000 ns/op 4.82 MB/s
BenchmarkGunzip-4 2 610034000 ns/op 31.81 MB/s
BenchmarkHTTPClientServer-4 3000 808587 ns/op
BenchmarkJSONEncode-4 10 169323500 ns/op 11.46 MB/s
BenchmarkJSONDecode-4 2 702473500 ns/op 2.76 MB/s
BenchmarkMandelbrot200-4 30 40211233 ns/op
BenchmarkGoParse-4 50 32544600 ns/op 1.78 MB/s
BenchmarkRegexpMatchEasy0_32-4 2000000 740 ns/op 43.22 MB/s
BenchmarkRegexpMatchEasy0_1K-4 300000 5351 ns/op 191.36 MB/s
BenchmarkRegexpMatchEasy1_32-4 2000000 811 ns/op 39.43 MB/s
BenchmarkRegexpMatchEasy1_1K-4 200000 7491 ns/op 136.69 MB/s
BenchmarkRegexpMatchMedium_32-4 1000000 1367 ns/op 0.73 MB/s
BenchmarkRegexpMatchMedium_1K-4 3000 422414 ns/op 2.42 MB/s
BenchmarkRegexpMatchHard_32-4 50000 25431 ns/op 1.26 MB/s
BenchmarkRegexpMatchHard_1K-4 2000 769882 ns/op 1.33 MB/s
BenchmarkRevcomp-4 1 6672122000 ns/op 38.09 MB/s
BenchmarkTemplate-4 2 809582500 ns/op 2.40 MB/s
BenchmarkTimeParse-4 500000 3466 ns/op
BenchmarkTimeFormat-4 500000 3463 ns/op
PASS
ok _/home/ajstarks/go/test/bench/go1 136.079s
@donpdonp
Copy link

donpdonp commented Aug 2, 2016

Is there a download link for aarch64 / arm-v8 / Pine 64 board? go-lang.org only has arm-v6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment