Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I see the claims that Go is supposed to be almost comparable in speed to C, but are there any benchmarks available yet?

share|improve this question

7 Answers

up vote 12 down vote accepted

There is a benchmark folder in the distribution. Check out $GOROOT/test/bench.

share|improve this answer
5  
The benchmarks are mostly from debians computer language benchmarks game. I've startet to port the missing ones: github.com/hoffmann/go-shootout Any help is welcome. – Peter Hoffmann Nov 12 '09 at 23:40
What do you mean "missing ones"? – igouy Nov 13 '09 at 2:17
2  
The debian computer language benchmarks game has 50+ examples alioth.debian.org/scm/viewvc.php/shootout/bench/?root=shootout only some of them are implemented in $GROOT/test/bench – Peter Hoffmann Nov 13 '09 at 10:00
@Peter Hoffman - No it doesn't. It has the 13 examples shown here - shootout.alioth.debian.org/u32q/index.php - And it has obsolete removed code from a history stretching into the previous century. – igouy Nov 13 '09 at 18:36

Go is added to the Computer Language Benchmarks Game. In comparison to C++ it has still a way to go.

November 2009:

Nov 2009

October 2011:

Oct 2011

share|improve this answer
You're a programmer! Don't you think how we write a program matters? reddit.com/r/programming/comments/a3yaq/… – igouy Nov 13 '09 at 18:32
You're right, the last sentence should have been "in comparison ... go and the implementation of the benchmarks still have a way to go". So I'm looking forward to learn ways how to speed up the benchmarks and go programs in general. – Peter Hoffmann Nov 14 '09 at 3:27
Wow, that is quite an increase in performance over just one year! – Xeoncross Sep 24 '12 at 15:48

The documentation is light and filled with "maybe someday we'll X" and "watch this space for more information." The Go page lists the language reference as the best single source for information, which to me says infant language. I doubt there are any published benchmarks yet.

share|improve this answer

I wrote a Go port of GenPrime (which is available at my fork of the project here). I published the results I received (compared to the C version) on this topic at Ferrous Moon. Despite the fact that my Go port used floating-point math versus integer math, the results are impressive.

share|improve this answer

From the Go FAQ:

Who should use the language?

Go is an experiment. We hope adventurous users will give it a try and see if they enjoy it. Not every programmer will, but we hope enough will find satisfaction in the approach it offers to justify further development.

So, Go is an experiment... If you'd like to know the answer... go experiment! :-)

share|improve this answer

Profiling Go Programs discusses Robert Hundt's C++/Scala/Go benchmarks and also clearly explains how to performance tune Go applications. It's a single program benchmark but is worth reading to get an idea of the level of tool support for performance tuning and the results show that it is competitive with C++ on this particular problem chosen by Hundt.

share|improve this answer

Keep in mind that the GC is a simple mark-sweep implementation. What I don't understand is why isn't Go utilizing the LLVM compiler tool chain?

share|improve this answer
4  
I have no idea how valid this is but the FAQ says: "We also considered using LLVM for 6g but we felt it was too large and slow to meet our performance goals." – mjs Nov 14 '09 at 19:17
@mjs Oh the irony :) – Alexei Averchenko Feb 24 at 19:21
@Alexei From what I know, that "too slow" was targeted at compilation speed which is one of the primary goal of Go. – FUZxxl Feb 27 at 22:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.