-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
psutil.cpu_count(logical=False) returns None on arm #1078
Comments
That is by design, meaning (also the doc states it) that if physical CPUs cannot be determined the function will return |
Huh, I thought I didn't actually open this issue, because I wound up discovering that it intentionally returns Anyways, sorry for the issue clutter, and I'll get you the contents of |
It's OK. =) |
Ok, the Pi's
|
Yeah, the format is just different. It's better not to try to guess it and just return None. |
Basically,
psutil.cpu_count()
returns the correct number of cores (4, on a raspberry pi 3), butpsutil.cpu_count(logical=False)
returns nothing at all.The text was updated successfully, but these errors were encountered: