1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-23 04:54:26 +00:00

Only throttle avalon clockspeed in avalon_auto in non optimal temperature settings if the fanspeed has reached maximum.

This commit is contained in:
Con Kolivas 2013-07-02 16:07:32 +10:00
parent 3ef0db5658
commit 18422fbf7d

View File

@ -909,9 +909,12 @@ static void *avalon_send_tasks(void *userdata)
if (opt_avalon_auto && info->auto_queued >= AVALON_AUTO_CYCLE) {
mutex_lock(&info->lock);
if (!info->optimal) {
applog(LOG_WARNING, "AVA%i: Above optimal temperature, throttling",
avalon->device_id);
avalon_dec_freq(info);
if (info->fan_pwm >= opt_avalon_fan_max) {
applog(LOG_WARNING,
"AVA%i: Above optimal temperature, throttling",
avalon->device_id);
avalon_dec_freq(info);
}
} else if (info->auto_nonces >= (AVALON_AUTO_CYCLE * 19 / 20) &&
info->auto_nonces <= (AVALON_AUTO_CYCLE * 21 / 20)) {
int total = info->auto_nonces + info->auto_hw;