Browse Source

Revert "Merge branch 'ave_time' of https://github.com/pshep/cgminer.git"

This reverts commit 242e52cdf9, reversing
changes made to 4dc1bf2319.
nfactor-troky
Paul Sheppard 13 years ago
parent
commit
01a69ee45e
  1. 9
      driver-bitforce.c
  2. 1
      miner.h

9
driver-bitforce.c

@ -29,8 +29,6 @@
#define WORK_CHECK_INTERVAL_MS 50 #define WORK_CHECK_INTERVAL_MS 50
#define MAX_START_DELAY_US 100000 #define MAX_START_DELAY_US 100000
#define tv_to_ms(tval) (tval.tv_sec * 1000 + tval.tv_usec / 1000) #define tv_to_ms(tval) (tval.tv_sec * 1000 + tval.tv_usec / 1000)
#define TIME_AVE_CONSTANT 16
#define TIME_AVE_ROUND (TIME_AVE_CONSTANT/2)
struct device_api bitforce_api; struct device_api bitforce_api;
@ -103,7 +101,7 @@ static bool bitforce_detect_one(const char *devpath)
s[0] = '\0'; s[0] = '\0';
bitforce->name = strdup(pdevbuf + 7); bitforce->name = strdup(pdevbuf + 7);
} }
mutex_init(&bitforce->device_mutex); mutex_init(&bitforce->device_mutex);
return add_cgpu(bitforce); return add_cgpu(bitforce);
@ -409,9 +407,6 @@ static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work)
if (delay_time_ms != bitforce->sleep_ms) 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); applog(LOG_DEBUG, "BFL%i: Wait time changed to: %d", bitforce->device_id, bitforce->sleep_ms, bitforce->wait_ms);
/* Work out the averge time taken. This method (pre mutiplier) maintains the fractional part accuracy */
bitforce->ave_wait += (tv_to_ms(elapsed) * TIME_AVE_CONSTANT) - bitforce->ave_wait;
} }
applog(LOG_DEBUG, "BFL%i: waited %dms until %s", bitforce->device_id, bitforce->wait_ms, pdevbuf); applog(LOG_DEBUG, "BFL%i: waited %dms until %s", bitforce->device_id, bitforce->wait_ms, pdevbuf);
@ -519,14 +514,12 @@ static bool bitforce_get_stats(struct cgpu_info *bitforce)
static struct api_data *bitforce_api_stats(struct cgpu_info *cgpu) static struct api_data *bitforce_api_stats(struct cgpu_info *cgpu)
{ {
struct api_data *root = NULL; struct api_data *root = NULL;
unsigned int ave_wait_ms = (cgpu->ave_wait + TIME_AVE_ROUND)/TIME_AVE_CONSTANT; /* Now remove the multiplier */
// Warning, access to these is not locked - but we don't really // Warning, access to these is not locked - but we don't really
// care since hashing performance is way more important than // care since hashing performance is way more important than
// locking access to displaying API debug 'stats' // locking access to displaying API debug 'stats'
// If locking becomes an issue for any of them, use copy_data=true also // 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, "Sleep Time", &(cgpu->sleep_ms), false);
root = api_add_uint(root, "Ave Wait", &(ave_wait_ms), false);
return root; return root;
} }

1
miner.h

@ -321,7 +321,6 @@ struct cgpu_info {
}; };
#ifdef USE_BITFORCE #ifdef USE_BITFORCE
struct timeval work_start_tv; struct timeval work_start_tv;
unsigned int ave_wait;
unsigned int wait_ms; unsigned int wait_ms;
unsigned int sleep_ms; unsigned int sleep_ms;
uint32_t nonces; uint32_t nonces;

Loading…
Cancel
Save