From 91b2025d6240ed950d6d488a7bc5dfa045e546e1 Mon Sep 17 00:00:00 2001 From: Domen Tabernik Date: Fri, 8 Mar 2019 22:28:13 +0000 Subject: [PATCH] Increased default fan_target_eps to 2% --- superfans_gpu_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superfans_gpu_controller.py b/superfans_gpu_controller.py index a27e792..20f0baf 100644 --- a/superfans_gpu_controller.py +++ b/superfans_gpu_controller.py @@ -27,7 +27,7 @@ def retrieve_nvidia_gpu_temperature(): else: return False -def superfans_gpu_controller(fan_settings, FAN_INCREASED_MIN_TIME=120, sleep_sec=2, gpu_moving_avg_num=5, fan_target_eps=1.0): +def superfans_gpu_controller(fan_settings, FAN_INCREASED_MIN_TIME=120, sleep_sec=2, gpu_moving_avg_num=5, fan_target_eps=2.0): """ Controller function that monitors GPU temperature in constant loop and adjusts FAN speeds based on provided `fan_settings`. After the loop the default preset is restored.