vote up 7 vote down star
4

I want to know the number of CPUs on the local machine in Python. The result should be user/real as output by time(1) when called with an optimally scaling userspace-only program. I'd be interested in any better ways to solve that problem.

flag

3 Answers

vote up 12 vote down check

If you have python2.6 you can simply use

import multiprocessing

multiprocessing.cpu_count()

http://docs.python.org/library/multiprocessing.html#multiprocessing.cpu_count

link|flag
That's why I asked the question on stackoverflow ;) – phihag Jun 17 at 10:56
Is this supported in BSD? – Casey Jul 29 at 8:23
@Casey Yes, it does, using sysctl -n. – phihag Jul 30 at 14:27
vote up 1 vote down

You can also look how Parallel Python does it.

link|flag
I did and integrated it. Thanks! – phihag Jun 17 at 14:44
vote up 12 vote down
import os,re,subprocess
def  determineNumberOfCPUs():
    """ Number of virtual or physical CPUs on this system, i.e.
    user/real as output by time(1) when called with an optimally scaling userspace-only program"""

    # Python 2.6+
    try:
    	import multiprocessing
    	return multiprocessing.cpu_count()
    except (ImportError,NotImplementedError):
    	pass

    # POSIX
    try:
    	res = int(os.sysconf('SC_NPROCESSORS_ONLN'))

    	if res > 0:
    		return res
    except (AttributeError,ValueError):
    	pass

    # Windows
    try:
    	res = int(os.environ['NUMBER_OF_PROCESSORS'])

    	if res > 0:
    		return res
    except (KeyError, ValueError):
    	pass

    # BSD
    try:
    	sysctl = subprocess.Popen(['sysctl', '-n', 'hw.ncpu'], stdout=subprocess.PIPE)
    	scStdout = sysctl.communicate()[0]
    	res = int(scStdout)

    	if res > 0:
    		return res
    except (OSError, ValueError):
    	pass

    # Linux
    try:
    	res = open('/proc/cpuinfo').read().count('processor\t:')

    	if res > 0:
    		return res
    except IOError:
    	pass

    # Solaris
    try:
    	pseudoDevices = os.listdir('/devices/pseudo/')
    	expr = re.compile('^cpuid@[0-9]+$')

    	res = 0
    	for pd in pseudoDevices:
    		if expr.match(pd) != None:
    			res += 1

    	if res > 0:
    		return res
    except OSError:
    	pass

    # Other UNIXes (heuristic)
    try:
    	try:
    		dmesg = open('/var/run/dmesg.boot').read()
    	except IOError:
    		dmesgProcess = subprocess.Popen(['dmesg'], stdout=subprocess.PIPE)
    		dmesg = dmesgProcess.communicate()[0]

    	res = 0
    	while '\ncpu' + str(res) + ':' in dmesg:
    		res += 1

    	if res > 0:
    		return res
    except OSError:
    	pass

    raise Exception('Can not determine number of CPUs on this system')
link|flag
1  
I guess you mean subprocess.PIPE and not Popen.PIPE, right? – EOL Jun 17 at 14:52
@EOL Yes, of course. Looks like a replace gone wild. Corrected. – phihag Jun 17 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.