1
0
Fork 1
mirror of https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git synced 2025-07-13 11:29:46 +03:00
pmbootstrap/pmb/parse/cpuinfo.py
Hugo Osvaldo Barrera f3f392ef66
Use simplified Python 3.8 syntax (MR 2327)
This commit was generated with:

    ruff check --fix --extend-select=UP .
2024-06-23 19:13:52 +02:00

33 lines
1 KiB
Python

# Copyright 2023 Lary Gibaud
# SPDX-License-Identifier: GPL-3.0-or-later
import re
from typing import Optional
def arm_big_little_first_group_ncpus() -> Optional[int]:
"""
Infer from /proc/cpuinfo on aarch64 if this is a big/little architecture
(if there is different processor models) and the number of cores in the
first model group.
https://en.wikipedia.org/wiki/ARM_big.LITTLE
:returns: the number of cores of the first model in the order given by
linux or None if not big/little architecture
"""
pattern = re.compile(r"^CPU part\s*: (\w+)$")
counter = 0
part = None
with open("/proc/cpuinfo") as cpuinfo:
for line in cpuinfo:
match = pattern.match(line)
if match:
grp = match.group(1)
if not part:
part = grp
counter += 1
elif part == grp:
counter += 1
else:
return counter
return None