Umm... talk about missing the point. The C++ version fits onto a business card. it's 35 lines by 37 characters wide. (1295 bytes)
The Go version is 229 lines (6.5x as long) and 4255 bytes long (3.2x as long). Fit that on a business card...
Your title should be "Go program optimized for speed faster than C++ program optimized for code size" and you should stop trying provoke people with false comparisons.
IIUC, the diff b/t go and most languages is that go spawns threads through a slicing mechanism to leverage multiple cores, right?! That's why the go version speeds up when run on multiple-core systems...right?
Included in the paste are the execution times on my lowly dual-core laptop. Spawning more threads speeds up the program. I would be curious to see how it scales to more cores on modern CPUs. If you have a chance, won't you please give it a try on your system and let me know how changing the number of threads affects execution time?
9 comments
[ 4.5 ms ] story [ 51.2 ms ] threadThe Go version is 229 lines (6.5x as long) and 4255 bytes long (3.2x as long). Fit that on a business card...
Your title should be "Go program optimized for speed faster than C++ program optimized for code size" and you should stop trying provoke people with false comparisons.
The base C++ version, for reference: https://gist.github.com/kid0m4n/6680629
But its never going to be apples-to-apples comparison. Given the different feature sets of either platform
But this definitely shows that Go performance is in the same ballpark though.
https://kidoman.com/programming/go-getter-part-2.html
So, I added pthreads to the ray-tracer program: http://pastebin.com/6V5JYyZG
Included in the paste are the execution times on my lowly dual-core laptop. Spawning more threads speeds up the program. I would be curious to see how it scales to more cores on modern CPUs. If you have a chance, won't you please give it a try on your system and let me know how changing the number of threads affects execution time?
For anyone who wants to try pthreads in C, the simplest example and progressions I could find were here: http://cs.gmu.edu/~white/CS571/Examples/pthread_examples.htm...