mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[arch] fix -> not restoring the CPUs to previous scaling governors after the package is built when optimizations are on
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import multiprocessing
|
||||
import os
|
||||
import traceback
|
||||
from logging import Logger
|
||||
from typing import Optional, Set, Tuple, Dict
|
||||
|
||||
from bauh.commons.system import new_root_subprocess
|
||||
|
||||
@@ -9,30 +11,67 @@ def supports_performance_mode():
|
||||
return os.path.exists('/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor')
|
||||
|
||||
|
||||
def all_in_performance() -> bool:
|
||||
for i in range(multiprocessing.cpu_count()):
|
||||
with open('/sys/devices/system/cpu/cpu{}/cpufreq/scaling_governor'.format(i)) as f:
|
||||
if f.read().strip() != 'performance':
|
||||
return False
|
||||
def current_governors() -> Dict[str, Set[int]]:
|
||||
governors = {}
|
||||
for cpu in range(multiprocessing.cpu_count()):
|
||||
with open('/sys/devices/system/cpu/cpu{}/cpufreq/scaling_governor'.format(cpu)) as f:
|
||||
gov = f.read().strip()
|
||||
cpus = governors.get(gov, set())
|
||||
cpus.add(cpu)
|
||||
governors[gov] = cpus
|
||||
|
||||
return False
|
||||
return governors
|
||||
|
||||
|
||||
def set_mode(mode: str, root_password: str):
|
||||
def set_governor(governor: str, root_password: str, cpu_idxs: Optional[Set[int]] = None):
|
||||
new_gov_file = '/tmp/bauh_scaling_governor'
|
||||
with open(new_gov_file, 'w+') as f:
|
||||
f.write(mode)
|
||||
f.write(governor)
|
||||
|
||||
for i in range(multiprocessing.cpu_count()):
|
||||
for idx in (cpu_idxs if cpu_idxs else range(multiprocessing.cpu_count())):
|
||||
_change_governor(idx, new_gov_file, root_password)
|
||||
|
||||
if os.path.exists(new_gov_file):
|
||||
try:
|
||||
gov_file = '/sys/devices/system/cpu/cpu{}/cpufreq/scaling_governor'.format(i)
|
||||
replace = new_root_subprocess(['cp', new_gov_file, gov_file], root_password=root_password)
|
||||
replace.wait()
|
||||
os.remove(new_gov_file)
|
||||
except:
|
||||
traceback.print_exc()
|
||||
|
||||
if os.path.exists(new_gov_file):
|
||||
try:
|
||||
os.remove(new_gov_file)
|
||||
except:
|
||||
traceback.print_exc()
|
||||
|
||||
def _change_governor(cpu_idx: int, new_gov_file_path: str, root_password: str):
|
||||
try:
|
||||
gov_file = '/sys/devices/system/cpu/cpu{}/cpufreq/scaling_governor'.format(cpu_idx)
|
||||
replace = new_root_subprocess(['cp', new_gov_file_path, gov_file], root_password=root_password)
|
||||
replace.wait()
|
||||
except:
|
||||
traceback.print_exc()
|
||||
|
||||
|
||||
def set_all_cpus_to(governor: str, root_password: str, logger: Optional[Logger] = None) -> Tuple[bool, Optional[Dict[str, Set[int]]]]:
|
||||
"""
|
||||
"""
|
||||
cpus_changed, cpu_governors = False, current_governors()
|
||||
|
||||
if cpu_governors:
|
||||
not_in_performance = set()
|
||||
for gov, cpus in cpu_governors.items():
|
||||
if gov != governor:
|
||||
not_in_performance.update(cpus)
|
||||
|
||||
if not_in_performance:
|
||||
if logger:
|
||||
logger.info("Changing CPUs {} governors to '{}'".format(not_in_performance, governor))
|
||||
|
||||
set_governor(governor, root_password, not_in_performance)
|
||||
cpus_changed = True
|
||||
|
||||
return cpus_changed, cpu_governors
|
||||
|
||||
|
||||
def set_cpus(governors: Dict[str, Set[int]], root_password: str, ignore_governors: Optional[Set[str]] = None, logger: Optional[Logger] = None):
|
||||
for gov, cpus in governors.items():
|
||||
if not ignore_governors or gov not in ignore_governors:
|
||||
if logger:
|
||||
logger.info("Changing CPUs {} governors to '{}'".format(cpus, gov))
|
||||
|
||||
set_governor(gov, root_password, cpus)
|
||||
|
||||
Reference in New Issue
Block a user