Merge pull request #170 from luke-jr/bugfix_icarus_speed Bugfix: Calculate Icarus timeout-exhausted nonce count correctly
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78
diff --git a/driver-icarus.c b/driver-icarus.c
index 12b70e6..e7d8350 100644
--- a/driver-icarus.c
+++ b/driver-icarus.c
@@ -286,7 +286,7 @@ static uint64_t icarus_scanhash(struct thr_info *thr, struct work *work,
char *ob_hex, *nonce_hex;
uint32_t nonce;
uint32_t hash_count;
- time_t t = 0;
+ struct timeval tv_start, tv_end, diff;
icarus = thr->cgpu;
fd = icarus->device_fd;
@@ -299,13 +299,15 @@ static uint64_t icarus_scanhash(struct thr_info *thr, struct work *work,
#ifndef WIN32
tcflush(fd, TCOFLUSH);
#endif
+
+ gettimeofday(&tv_start, NULL);
+
ret = icarus_write(fd, ob_bin, sizeof(ob_bin));
if (ret)
return 0; /* This should never happen */
ob_hex = bin2hex(ob_bin, sizeof(ob_bin));
if (ob_hex) {
- t = time(NULL);
applog(LOG_DEBUG, "Icarus %s send: %s",
icarus->device_id, ob_hex);
free(ob_hex);
@@ -315,23 +317,32 @@ static uint64_t icarus_scanhash(struct thr_info *thr, struct work *work,
memset(nonce_bin, 0, sizeof(nonce_bin));
ret = icarus_gets(nonce_bin, sizeof(nonce_bin), fd, wr);
+ gettimeofday(&tv_end, NULL);
+ timeval_subtract(&diff, &tv_end, &tv_start);
+
nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
if (nonce_hex) {
- t = time(NULL) - t;
- applog(LOG_DEBUG, "Icarus %d return (elapse %d seconds): %s",
- icarus->device_id, t, nonce_hex);
+ applog(LOG_DEBUG, "Icarus %d returned (in %d.%06d seconds): %s",
+ icarus->device_id, diff.tv_sec, diff.tv_usec, nonce_hex);
free(nonce_hex);
}
memcpy((char *)&nonce, nonce_bin, sizeof(nonce_bin));
- if (nonce == 0 && ret)
- return 0xffffffff;
+ work->blk.nonce = 0xffffffff;
+
+ if (nonce == 0 && ret) {
+ if (unlikely(diff.tv_sec > 12 || (diff.tv_sec == 11 && diff.tv_usec > 300067)))
+ return 0xffffffff;
+ // Approximately how much of the nonce Icarus scans in 1 second...
+ // 0x16a7a561 would be if it was exactly 380 MH/s
+ // 0x168b7b4b was the average over a 201-sample period based on time to find actual shares
+ return (0x168b7b4b * diff.tv_sec) + (0x17a * diff.tv_usec);
+ }
#ifndef __BIG_ENDIAN__
nonce = swab32(nonce);
#endif
- work->blk.nonce = 0xffffffff;
submit_nonce(thr, work, nonce);
hash_count = (nonce & 0x7fffffff);
@@ -344,6 +355,8 @@ static uint64_t icarus_scanhash(struct thr_info *thr, struct work *work,
hash_count <<= 1;
}
+ applog(LOG_DEBUG, "0x%x hashes in %d.%06d seconds", hash_count, diff.tv_sec, diff.tv_usec);
+
return hash_count;
}