Why is this apparently simple Go benchmark so slow? (gist.github.com) 1 points by ditados 13y ago ↗ HN
[–] kibibu 13y ago ↗ From the Go docs: "GOMAXPROCS sets the maximum number of CPUs that can be executing simultaneously and returns the previous setting"You are setting this to 8 on a dual-core system. What happens when you set it to 2?
1 comment
[ 213 ms ] story [ 640 ms ] threadYou are setting this to 8 on a dual-core system. What happens when you set it to 2?