Add average wait time to api stats
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
diff --git a/driver-bitforce.c b/driver-bitforce.c
index be266e2..8e41bb9 100644
--- a/driver-bitforce.c
+++ b/driver-bitforce.c
@@ -29,6 +29,7 @@
#define WORK_CHECK_INTERVAL_MS 50
#define MAX_START_DELAY_US 100000
#define tv_to_ms(tval) (tval.tv_sec * 1000 + tval.tv_usec / 1000)
+#define TIME_AVE_CONSTANT 8
struct device_api bitforce_api;
@@ -101,7 +102,7 @@ static bool bitforce_detect_one(const char *devpath)
s[0] = '\0';
bitforce->name = strdup(pdevbuf + 7);
}
-
+
mutex_init(&bitforce->device_mutex);
return add_cgpu(bitforce);
@@ -407,6 +408,10 @@ static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work)
if (delay_time_ms != bitforce->sleep_ms)
applog(LOG_DEBUG, "BFL%i: Wait time changed to: %d", bitforce->device_id, bitforce->sleep_ms, bitforce->wait_ms);
+
+ /* Work out the average time taken. Float for calculation, uint for display */
+ bitforce->ave_wait_f += (tv_to_ms(elapsed) - bitforce->ave_wait_f) / TIME_AVE_CONSTANT;
+ bitforce->ave_wait_d = (unsigned int) (bitforce->ave_wait_f + 0.5);
}
applog(LOG_DEBUG, "BFL%i: waited %dms until %s", bitforce->device_id, bitforce->wait_ms, pdevbuf);
@@ -432,7 +437,6 @@ static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work)
bitforce->nonce_range = false;
work->blk.nonce = 0xffffffff;
bitforce->sleep_ms *= 5;
- bitforce->kname = "Single";
}
submit_nonce(thr, work, nonce);
@@ -520,6 +524,7 @@ static struct api_data *bitforce_api_stats(struct cgpu_info *cgpu)
// locking access to displaying API debug 'stats'
// If locking becomes an issue for any of them, use copy_data=true also
root = api_add_uint(root, "Sleep Time", &(cgpu->sleep_ms), false);
+ root = api_add_uint(root, "Ave Wait", &(cgpu->ave_wait_d), false);
return root;
}
diff --git a/miner.h b/miner.h
index 4acb8f9..fc8a108 100644
--- a/miner.h
+++ b/miner.h
@@ -321,8 +321,11 @@ struct cgpu_info {
};
#ifdef USE_BITFORCE
struct timeval work_start_tv;
+ unsigned int ave_wait;
unsigned int wait_ms;
unsigned int sleep_ms;
+ double ave_wait_f;
+ unsigned int ave_wait_d;
uint32_t nonces;
bool nonce_range;
#endif