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

As we can see from The Computer Language Benchmarks Game:

  • go is on average 10x slower than C
  • go is 3x slower than Java !?

How can this be, bearing in mind that go compiler produces native code for execution?
Immature compilers for go? Or there is some intrinsic problem with the go language?

EDIT:
Most answers deny intrinsic slowness of Go languge, claiming the problem resides in immature compilers.
Therefore I've made some own tests to calculate Fibonacci numbers: Iterative algorithm runs in Go (freebsd,6g) with the same speed as in C (with O3 option). The dull recursive one runs in Go 2 times slower than in C (with -O3 option; with -O0 - the same). But I haven't seen 10x fall as in the Benchmarks Game.

Thanks a lot for answers!

share|improve this question
21  
To be fair, C is ASM in disguise, and Java has some serious optimisations under the hood these days. – Matthew Scharley Apr 24 '10 at 12:23
7  
Perhaps the benchmark also does not reflect the strengths of Go. It may be that other benchmarks are actually faster than this. Besides, often it's not the performance but the readability of the code that counts most. – extraneon Apr 24 '10 at 12:31
5  
@extraneon: I agree. Remember, Go is designed for Google and Google routinely runs code on 2 million cores. The Benchmarks Game uses only 4 cores, I believe. – Jörg W Mittag Apr 24 '10 at 14:47
3  
@extraneon: I agree in general, but Go was specifically designed with speed in mind, as in, "resulting programs run nearly as quickly as comparable C or C++ code." – shosti Apr 24 '10 at 15:47
4  
@twopoint718: +1 to the OP's question and +1 to @Steve Jessop's answer. You, on the contrary, brought nothing of value of SO and such condescending comments are best left to Usenet next time. – SyntaxT3rr0r May 13 '11 at 8:59
show 11 more comments

4 Answers

up vote 59 down vote accepted

The 6g and 8g compilers are not particularly optimising, so the code they produce isn't particularly fast.

They're designed to run fast themselves and produce code that's OK (there is a bit of optimisation). gccgo uses GCC's existing optimisation passes, and might provide a more pointful comparison with C, but gccgo isn't feature-complete yet.

Benchmark figures are almost entirely about quality of implementation. They don't have a huge amount to do with the language as such, except to the extent that the implementation spends runtime supporting language features that the benchmark doesn't really need. In most compiled languages a sufficiently clever compiler could in theory strip out what isn't needed, but there comes a point where you're rigging the demo, since very few real users of the language would write programs that didn't use that feature. Moving things out of the way without removing them entirely (e.g. predicting virtual call destinations in JIT-compiled Java) starts to get tricky.

FWIW, my own very trivial test with Go when I was taking a look at it (a loop of integer addition, basically), gccgo produced code towards the fast end of the range between gcc -O0 and gcc -O2 for equivalent C. Go isn't inherently slow, but the compilers don't do everything, yet. Hardly surprising for a language that's 10 minutes old.

share|improve this answer
4  
Moreover, it may be that Go programs in The Computer Language Benchmarks Game are not that optimized as C and Java ones are. – el.pescado Apr 24 '10 at 12:58
What about between gcc -O0 and gcc -O3 ? Is there even the intention that the compilers will "do everything" ? – igouy Apr 24 '10 at 17:19
@igouy: well, I'm pretty sure that there's an intention gccgo will do garbage collection, which currently it doesn't. There are still some features to go into the g compilers too, for instance they don't currently use host threads particularly well (specifically, the goroutine scheduler isn't pre-emptive). Beyond that, I don't know Google's plans, whether the g compilers will ever be fiercely optimising, or if only gccgo will. – Steve Jessop Apr 24 '10 at 17:46
I disagree with your statements that "Benchmark figures are almost entirely about quality of implementation. They don't have a huge amount to do with the language as such ..." – Atom Sep 21 '11 at 18:12
1  
@xitrium: I think the intention for Go is that implementations should not be required to schedule co-operatively, they can pre-empt if they want. See for example code.google.com/p/go/issues/detail?id=543, which hasn't been closed as "nonsensical, fixing this so-called bug would contradict the Go language definition", which it should be if Go implementations are forbidden to pre-empt :-) The issue was compounded by the fact that by default Go used only a single host thread no matter how many goroutines were runnable. – Steve Jessop Mar 16 '12 at 18:22
show 3 more comments

In the next release of the Go FAQ, something similar to the following should appear.

Performance

Why does Go perform badly on benchmark X?

One of Go's design goals is to approach the performance of C for comparable programs, yet on some benchmarks it does quite poorly, including several in test/bench. The slowest depend on libraries for which versions of comparable performance are not available in Go. For instance, pidigits depends on a multi-precision math package, and the C versions, unlike Go's, use GMP (which is written in optimized assembler). Benchmarks that depend on regular expressions (regex-dna, for instance) are essentially comparing Go's stopgap regexp package to mature, highly optimized regular expression libraries like PCRE.

Benchmark games are won by extensive tuning and the Go versions of most of the benchmarks need attention. If you measure comparable C and Go programs (reverse-complement is one example), you'll see the two languages are much closer in raw performance than this suite would indicate.

Still, there is room for improvement. The compilers are good but could be better, many libraries need major performance work, and the garbage collector isn't fast enough yet (even if it were, taking care not to generate unnecessary garbage can have a huge effect).

And here's some more details on The Computer Benchmarks Game from a recent mailing list thread.

Garbage collection and performance in gccgo (1)

Garbage collection and performance in gccgo (2)

It's important to note that the Computer Benchmarks Game is just a game. People with experience in performance measurement and capacity planning carefully match like with like over realistic and actual workloads; they don't play games.

share|improve this answer
1  
And here some details from that same thread that you have excluded - groups.google.com/group/golang-nuts/msg/2e568d2888970308 – igouy Apr 24 '10 at 17:22
3  
It's important to note that "benchmarks are a crock" - not just the benchmarks published as the benchmarks game - shootout.alioth.debian.org/flawed-benchmarks.php – igouy Apr 24 '10 at 17:24
4  
(and everybody...) Sure it's a "game", but when I see that Go is only two times slower than the fastest on these benchmarks, my first impression is "wow, Go seems fast", because I know these benchmarks are flawed. On the contrary, when I see Ruby being 65 times slower than the fastest, I think to myself "not gonna use Ruby for my next concurrent-numerically-intensive endeavour". So it may be a "game", but there's some truth in it if you take it with a grain of salt. – SyntaxT3rr0r May 13 '11 at 9:02

My answer isn't quite as technical as everyone else's, but I think it's still relevant. I saw the same benchmarks on the Computer Benchmarks Game when I decided to start learning Go. But I honestly think all these synthetic benchmarks are pointless in terms of deciding whether Go is fast enough for you.

I had written a message server in Python using Tornado+TornadIO+ZMQ recently, and for my first Go project I decided to rewrite the server in Go. So far, having gotten the server to the same functionality as the Python version, my tests are showing me about 4.7x speed increase in the Go program. Mind you, I have only been coding in Go for maybe a week, and I have been coding in Python for over 5 years.

Go is only going to get faster as they continue to work on it, and I think really it comes down to how it performs in a real world application and not tiny little computational benchmarks. For me, Go apparently resulted in a more efficient program than what I could produce in Python. That is my take on the answer to this question.

share|improve this answer
How much slower do you think you will be writing Go code than Python? – Adam Smith Apr 8 at 9:56
@AdamSmith - I would say I would write Go code more slowly than Python only because I have been coding Python for 7+ years and only a little Go. But in terms of Go versus other statically typed, compiled languages, I wager I would write Go faster than others. Personally, I feel its the closest thing to the simplicity of Python with speed between C and C++ – jdi Apr 9 at 22:01

Both Java and C are more explicit with their data and method (function) definitions. C is statically typed, and Java is less so with its inheritance model. This means that the way the data will be handled is pretty much defined during the compilation.

Go is more implicit with its data and function definitions. The built in functions are more general in nature, and the lack of a type hierarchy (like Java or C++) gives Go a speed disadvantage.

Keep in mind that Google's goal for the Go language is to have an acceptable compromise between speed of execution and speed of coding. I think they are hitting a good sweet spot on their early attempt, and things will only improve as more work is done.

If you compare Go with more dynamically typed languages whose main advantage is speed of coding, you will see the execution speed advantage of Go. Go is 8 times faster than perl, and 6 times faster than Ruby 1.9 and Python 3 on those benchmarks you used.

Anyway the better question to ask is Go a good compromise in ease of programming versus speed of execution? My answer being yes and it should get better.

share|improve this answer
4  
"lack of a type hierarchy (like Java or C++) gives Go a speed disadvantage" —wut? – Erik Allik Feb 20 at 1:47

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.