Skip to content

Instantly share code, notes, and snippets.

@julie-is-late
Created February 8, 2017 22:25
Show Gist options
  • Save julie-is-late/1831225abe28e29ef2c32f4957edead6 to your computer and use it in GitHub Desktop.
Save julie-is-late/1831225abe28e29ef2c32f4957edead6 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Printf("current: %d\n", runtime.GOMAXPROCS(0))
fmt.Printf("max: %d\n", runtime.NumCPU())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment