double check if we are still in AC before writing HWP value
This commit is contained in:
@@ -139,9 +139,11 @@ def power_thread(config, regs, exit_event):
|
|||||||
enable_hwp_mode = config.getboolean('AC', 'HWP_Mode', fallback=False)
|
enable_hwp_mode = config.getboolean('AC', 'HWP_Mode', fallback=False)
|
||||||
if power_source == 'AC' and enable_hwp_mode:
|
if power_source == 'AC' and enable_hwp_mode:
|
||||||
cpu_usage = float(psutil.cpu_percent(interval=wait_t))
|
cpu_usage = float(psutil.cpu_percent(interval=wait_t))
|
||||||
# set the full performance mode only when load is greater than this threshold (~ at least 1 core full speed)
|
# set full performance mode only when load is greater than this threshold (~ at least 1 core full speed)
|
||||||
performance_mode = cpu_usage > 100. / (cpu_count() * 1.25)
|
performance_mode = cpu_usage > 100. / (cpu_count() * 1.25)
|
||||||
set_hwp('performance' if performance_mode else 'balance_performance')
|
# check again if we are on AC, since in the meantime we might have switched to BATTERY
|
||||||
|
if not is_on_battery():
|
||||||
|
set_hwp('performance' if performance_mode else 'balance_performance')
|
||||||
else:
|
else:
|
||||||
exit_event.wait(wait_t)
|
exit_event.wait(wait_t)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user