Skip to content

Commit

Permalink
Fix logic in MSR availability test (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom authored May 3, 2024
1 parent 6573f89 commit 555a168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyperf/_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def available():
return (
OS_LINUX and
not use_intel_pstate() and
platform.machine() not in ('x86', 'x86_64', 'amd64')
platform.machine() in ('x86', 'x86_64', 'amd64')
)

def __init__(self, system):
Expand Down

0 comments on commit 555a168

Please sign in to comment.