mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-14 16:58:05 +00:00
Sleeping on intensity decrease is broken, remove it.
This commit is contained in:
parent
7e55a41209
commit
6b80592cde
@ -1509,8 +1509,6 @@ static int64_t opencl_scanhash(struct thr_info *thr, struct work *work,
|
|||||||
if (gpu->gpu_us_average > dynamic_us) {
|
if (gpu->gpu_us_average > dynamic_us) {
|
||||||
if (gpu->intensity > MIN_INTENSITY)
|
if (gpu->intensity > MIN_INTENSITY)
|
||||||
--gpu->intensity;
|
--gpu->intensity;
|
||||||
else
|
|
||||||
nmsleep(gpu->gpu_us_average - dynamic_us);
|
|
||||||
} else if (gpu->gpu_us_average < dynamic_us / 2) {
|
} else if (gpu->gpu_us_average < dynamic_us / 2) {
|
||||||
if (gpu->intensity < MAX_INTENSITY)
|
if (gpu->intensity < MAX_INTENSITY)
|
||||||
++gpu->intensity;
|
++gpu->intensity;
|
||||||
|
Loading…
Reference in New Issue
Block a user