mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
We should be using que_low to decrease scan sleep time in bflsc.
This commit is contained in:
parent
09dbd616e2
commit
89f571f527
@ -1761,7 +1761,7 @@ static int64_t bflsc_scanwork(struct thr_info *thr)
|
||||
/* Increase slowly but decrease quickly */
|
||||
if (min_queued > sc_info->que_full_enough && old_sleep_time < BFLSC_MAX_SLEEP)
|
||||
new_sleep_time = old_sleep_time * 21 / 20;
|
||||
else if (min_queued < sc_info->que_watermark)
|
||||
else if (min_queued < sc_info->que_low)
|
||||
new_sleep_time = old_sleep_time * 2 / 3;
|
||||
|
||||
/* Do not sleep more than BFLSC_MAX_SLEEP so we can always
|
||||
|
Loading…
Reference in New Issue
Block a user