Skip to content

Instantly share code, notes, and snippets.

@4e1e0603
Forked from cgoldberg/num_cpu_cores.py
Created December 7, 2015 11:42
Show Gist options
  • Save 4e1e0603/ace40e317a1a47b9c09c to your computer and use it in GitHub Desktop.
Save 4e1e0603/ace40e317a1a47b9c09c to your computer and use it in GitHub Desktop.
Find the number of CPU cores (Linux)
def num_cpu_cores():
with open('/proc/cpuinfo') as f:
return f.read().count('processor')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment