Skip to content
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

Patch cpu count physical #1727

Merged
merged 1 commit into from
Oct 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions psutil/_pslinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,12 +619,12 @@ def cpu_count_logical():
def cpu_count_physical():
"""Return the number of physical cores in the system."""
# Method #1
core_ids = set()
thread_siblings_lists = set()
for path in glob.glob(
"/sys/devices/system/cpu/cpu[0-9]*/topology/core_id"):
"/sys/devices/system/cpu/cpu[0-9]*/topology/thread_siblings_list"):
with open_binary(path) as f:
core_ids.add(int(f.read()))
result = len(core_ids)
thread_siblings_lists.add(f.read())
result = len(thread_siblings_lists)
if result != 0:
return result

Expand Down