|
|
@ -445,6 +445,7 @@ struct pool *current_pool(void) |
|
|
|
char *set_int_range(const char *arg, int *i, int min, int max) |
|
|
|
char *set_int_range(const char *arg, int *i, int min, int max) |
|
|
|
{ |
|
|
|
{ |
|
|
|
char *err = opt_set_intval(arg, i); |
|
|
|
char *err = opt_set_intval(arg, i); |
|
|
|
|
|
|
|
|
|
|
|
if (err) |
|
|
|
if (err) |
|
|
|
return err; |
|
|
|
return err; |
|
|
|
|
|
|
|
|
|
|
@ -594,7 +595,7 @@ static char *set_userpass(const char *arg) |
|
|
|
static char *enable_debug(bool *flag) |
|
|
|
static char *enable_debug(bool *flag) |
|
|
|
{ |
|
|
|
{ |
|
|
|
*flag = true; |
|
|
|
*flag = true; |
|
|
|
/* Turn out verbose output, too. */ |
|
|
|
/* Turn on verbose output, too. */ |
|
|
|
opt_log_output = true; |
|
|
|
opt_log_output = true; |
|
|
|
return NULL; |
|
|
|
return NULL; |
|
|
|
} |
|
|
|
} |
|
|
@ -609,8 +610,8 @@ static char *set_schedtime(const char *arg, struct schedtime *st) |
|
|
|
return NULL; |
|
|
|
return NULL; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static char* |
|
|
|
static char* set_sharelog(char *arg) |
|
|
|
set_sharelog(char *arg) { |
|
|
|
{ |
|
|
|
char *r = ""; |
|
|
|
char *r = ""; |
|
|
|
long int i = strtol(arg, &r, 10); |
|
|
|
long int i = strtol(arg, &r, 10); |
|
|
|
|
|
|
|
|
|
|
@ -662,11 +663,11 @@ static void load_temp_cutoffs() |
|
|
|
|
|
|
|
|
|
|
|
devices[device]->cutofftemp = val; |
|
|
|
devices[device]->cutofftemp = val; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
else { |
|
|
|
for (i = device; i < total_devices; ++i) { |
|
|
|
for (i = device; i < total_devices; ++i) |
|
|
|
|
|
|
|
if (!devices[i]->cutofftemp) |
|
|
|
if (!devices[i]->cutofftemp) |
|
|
|
devices[i]->cutofftemp = opt_cutofftemp; |
|
|
|
devices[i]->cutofftemp = opt_cutofftemp; |
|
|
|
|
|
|
|
} |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (device <= 1) { |
|
|
|
if (device <= 1) { |
|
|
@ -1025,6 +1026,7 @@ static char *parse_config(json_t *config, bool fileconf) |
|
|
|
name = strdup(opt->names); |
|
|
|
name = strdup(opt->names); |
|
|
|
for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) { |
|
|
|
for (p = strtok(name, "|"); p; p = strtok(NULL, "|")) { |
|
|
|
char *err = NULL; |
|
|
|
char *err = NULL; |
|
|
|
|
|
|
|
|
|
|
|
/* Ignore short options. */ |
|
|
|
/* Ignore short options. */ |
|
|
|
if (p[1] != '-') |
|
|
|
if (p[1] != '-') |
|
|
|
continue; |
|
|
|
continue; |
|
|
@ -1117,8 +1119,7 @@ static void load_default_config(void) |
|
|
|
if (getenv("HOME") && *getenv("HOME")) { |
|
|
|
if (getenv("HOME") && *getenv("HOME")) { |
|
|
|
strcpy(cnfbuf, getenv("HOME")); |
|
|
|
strcpy(cnfbuf, getenv("HOME")); |
|
|
|
strcat(cnfbuf, "/"); |
|
|
|
strcat(cnfbuf, "/"); |
|
|
|
} |
|
|
|
} else |
|
|
|
else |
|
|
|
|
|
|
|
strcpy(cnfbuf, ""); |
|
|
|
strcpy(cnfbuf, ""); |
|
|
|
strcat(cnfbuf, ".cgminer/"); |
|
|
|
strcat(cnfbuf, ".cgminer/"); |
|
|
|
#else |
|
|
|
#else |
|
|
@ -3364,8 +3365,9 @@ static void hashmeter(int thr_id, struct timeval *diff, |
|
|
|
if (want_per_device_stats) { |
|
|
|
if (want_per_device_stats) { |
|
|
|
struct timeval now; |
|
|
|
struct timeval now; |
|
|
|
struct timeval elapsed; |
|
|
|
struct timeval elapsed; |
|
|
|
|
|
|
|
|
|
|
|
gettimeofday(&now, NULL); |
|
|
|
gettimeofday(&now, NULL); |
|
|
|
timeval_subtract(&elapsed, &now, &thr->cgpu->last_message_tv); |
|
|
|
timersub(&now, &thr->cgpu->last_message_tv, &elapsed); |
|
|
|
if (opt_log_interval <= elapsed.tv_sec) { |
|
|
|
if (opt_log_interval <= elapsed.tv_sec) { |
|
|
|
struct cgpu_info *cgpu = thr->cgpu; |
|
|
|
struct cgpu_info *cgpu = thr->cgpu; |
|
|
|
char logline[255]; |
|
|
|
char logline[255]; |
|
|
@ -3385,7 +3387,7 @@ static void hashmeter(int thr_id, struct timeval *diff, |
|
|
|
/* Totals are updated by all threads so can race without locking */ |
|
|
|
/* Totals are updated by all threads so can race without locking */ |
|
|
|
mutex_lock(&hash_lock); |
|
|
|
mutex_lock(&hash_lock); |
|
|
|
gettimeofday(&temp_tv_end, NULL); |
|
|
|
gettimeofday(&temp_tv_end, NULL); |
|
|
|
timeval_subtract(&total_diff, &temp_tv_end, &total_tv_end); |
|
|
|
timersub(&temp_tv_end, &total_tv_end, &total_diff); |
|
|
|
|
|
|
|
|
|
|
|
total_mhashes_done += local_mhashes; |
|
|
|
total_mhashes_done += local_mhashes; |
|
|
|
local_mhashes_done += local_mhashes; |
|
|
|
local_mhashes_done += local_mhashes; |
|
|
@ -3399,7 +3401,7 @@ static void hashmeter(int thr_id, struct timeval *diff, |
|
|
|
decay_time(&rolling, local_mhashes_done / local_secs); |
|
|
|
decay_time(&rolling, local_mhashes_done / local_secs); |
|
|
|
global_hashrate = roundl(rolling) * 1000000; |
|
|
|
global_hashrate = roundl(rolling) * 1000000; |
|
|
|
|
|
|
|
|
|
|
|
timeval_subtract(&total_diff, &total_tv_end, &total_tv_start); |
|
|
|
timersub(&total_tv_end, &total_tv_start, &total_diff); |
|
|
|
total_secs = (double)total_diff.tv_sec + |
|
|
|
total_secs = (double)total_diff.tv_sec + |
|
|
|
((double)total_diff.tv_usec / 1000000.0); |
|
|
|
((double)total_diff.tv_usec / 1000000.0); |
|
|
|
|
|
|
|
|
|
|
@ -3953,7 +3955,7 @@ void *miner_thread(void *userdata) |
|
|
|
/* Try to cycle approximately 5 times before each log update */ |
|
|
|
/* Try to cycle approximately 5 times before each log update */ |
|
|
|
const long cycle = opt_log_interval / 5 ? : 1; |
|
|
|
const long cycle = opt_log_interval / 5 ? : 1; |
|
|
|
struct timeval tv_start, tv_end, tv_workstart, tv_lastupdate; |
|
|
|
struct timeval tv_start, tv_end, tv_workstart, tv_lastupdate; |
|
|
|
struct timeval diff, sdiff, wdiff; |
|
|
|
struct timeval diff, sdiff, wdiff = {0, 0}; |
|
|
|
uint32_t max_nonce = api->can_limit_work ? api->can_limit_work(mythr) : 0xffffffff; |
|
|
|
uint32_t max_nonce = api->can_limit_work ? api->can_limit_work(mythr) : 0xffffffff; |
|
|
|
unsigned long long hashes_done = 0; |
|
|
|
unsigned long long hashes_done = 0; |
|
|
|
unsigned long long hashes; |
|
|
|
unsigned long long hashes; |
|
|
@ -4070,7 +4072,7 @@ void *miner_thread(void *userdata) |
|
|
|
cgpu->max_hashes = hashes; |
|
|
|
cgpu->max_hashes = hashes; |
|
|
|
|
|
|
|
|
|
|
|
gettimeofday(&tv_end, NULL); |
|
|
|
gettimeofday(&tv_end, NULL); |
|
|
|
timeval_subtract(&diff, &tv_end, &tv_start); |
|
|
|
timersub(&tv_end, &tv_start, &diff); |
|
|
|
sdiff.tv_sec += diff.tv_sec; |
|
|
|
sdiff.tv_sec += diff.tv_sec; |
|
|
|
sdiff.tv_usec += diff.tv_usec; |
|
|
|
sdiff.tv_usec += diff.tv_usec; |
|
|
|
if (sdiff.tv_usec > 1000000) { |
|
|
|
if (sdiff.tv_usec > 1000000) { |
|
|
@ -4078,7 +4080,7 @@ void *miner_thread(void *userdata) |
|
|
|
sdiff.tv_usec -= 1000000; |
|
|
|
sdiff.tv_usec -= 1000000; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
timeval_subtract(&wdiff, &tv_end, &tv_workstart); |
|
|
|
timersub(&tv_end, &tv_workstart, &wdiff); |
|
|
|
if (!requested) { |
|
|
|
if (!requested) { |
|
|
|
if (wdiff.tv_sec > request_interval || work->blk.nonce > request_nonce) { |
|
|
|
if (wdiff.tv_sec > request_interval || work->blk.nonce > request_nonce) { |
|
|
|
thread_reportout(mythr); |
|
|
|
thread_reportout(mythr); |
|
|
@ -4114,7 +4116,7 @@ void *miner_thread(void *userdata) |
|
|
|
max_nonce = max_nonce * 0x400 / (((cycle * 1000000) + sdiff.tv_usec) / (cycle * 1000000 / 0x400)); |
|
|
|
max_nonce = max_nonce * 0x400 / (((cycle * 1000000) + sdiff.tv_usec) / (cycle * 1000000 / 0x400)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
timeval_subtract(&diff, &tv_end, &tv_lastupdate); |
|
|
|
timersub(&tv_end, &tv_lastupdate, &diff); |
|
|
|
if (diff.tv_sec >= opt_log_interval) { |
|
|
|
if (diff.tv_sec >= opt_log_interval) { |
|
|
|
hashmeter(thr_id, &diff, hashes_done); |
|
|
|
hashmeter(thr_id, &diff, hashes_done); |
|
|
|
hashes_done = 0; |
|
|
|
hashes_done = 0; |
|
|
@ -4601,7 +4603,7 @@ static void print_summary(void) |
|
|
|
int hours, mins, secs, i; |
|
|
|
int hours, mins, secs, i; |
|
|
|
double utility, efficiency = 0.0; |
|
|
|
double utility, efficiency = 0.0; |
|
|
|
|
|
|
|
|
|
|
|
timeval_subtract(&diff, &total_tv_end, &total_tv_start); |
|
|
|
timersub(&total_tv_end, &total_tv_start, &diff); |
|
|
|
hours = diff.tv_sec / 3600; |
|
|
|
hours = diff.tv_sec / 3600; |
|
|
|
mins = (diff.tv_sec % 3600) / 60; |
|
|
|
mins = (diff.tv_sec % 3600) / 60; |
|
|
|
secs = diff.tv_sec % 60; |
|
|
|
secs = diff.tv_sec % 60; |
|
|
@ -4817,6 +4819,7 @@ out: |
|
|
|
// Make a pipe: [readFD, writeFD]
|
|
|
|
// Make a pipe: [readFD, writeFD]
|
|
|
|
int pfd[2]; |
|
|
|
int pfd[2]; |
|
|
|
int r = pipe(pfd); |
|
|
|
int r = pipe(pfd); |
|
|
|
|
|
|
|
|
|
|
|
if (r < 0) { |
|
|
|
if (r < 0) { |
|
|
|
perror("pipe - failed to create pipe for --monitor"); |
|
|
|
perror("pipe - failed to create pipe for --monitor"); |
|
|
|
exit(1); |
|
|
|
exit(1); |
|
|
@ -4958,8 +4961,7 @@ bool add_cgpu(struct cgpu_info*cgpu) |
|
|
|
HASH_FIND_STR(devids, cgpu->api->name, d); |
|
|
|
HASH_FIND_STR(devids, cgpu->api->name, d); |
|
|
|
if (d) |
|
|
|
if (d) |
|
|
|
cgpu->device_id = ++d->lastid; |
|
|
|
cgpu->device_id = ++d->lastid; |
|
|
|
else |
|
|
|
else { |
|
|
|
{ |
|
|
|
|
|
|
|
d = malloc(sizeof(*d)); |
|
|
|
d = malloc(sizeof(*d)); |
|
|
|
memcpy(d->name, cgpu->api->name, sizeof(d->name)); |
|
|
|
memcpy(d->name, cgpu->api->name, sizeof(d->name)); |
|
|
|
cgpu->device_id = d->lastid = 0; |
|
|
|
cgpu->device_id = d->lastid = 0; |
|
|
@ -5120,12 +5122,14 @@ int main(int argc, char *argv[]) |
|
|
|
#ifdef WANT_CPUMINE |
|
|
|
#ifdef WANT_CPUMINE |
|
|
|
if (0 <= opt_bench_algo) { |
|
|
|
if (0 <= opt_bench_algo) { |
|
|
|
double rate = bench_algo_stage3(opt_bench_algo); |
|
|
|
double rate = bench_algo_stage3(opt_bench_algo); |
|
|
|
if (!skip_to_bench) { |
|
|
|
|
|
|
|
|
|
|
|
if (!skip_to_bench) |
|
|
|
printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]); |
|
|
|
printf("%.5f (%s)\n", rate, algo_names[opt_bench_algo]); |
|
|
|
} else { |
|
|
|
else { |
|
|
|
// Write result to shared memory for parent
|
|
|
|
// Write result to shared memory for parent
|
|
|
|
#if defined(WIN32) |
|
|
|
#if defined(WIN32) |
|
|
|
char unique_name[64]; |
|
|
|
char unique_name[64]; |
|
|
|
|
|
|
|
|
|
|
|
if (GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) { |
|
|
|
if (GetEnvironmentVariable("CGMINER_SHARED_MEM", unique_name, 32)) { |
|
|
|
HANDLE map_handle = CreateFileMapping( |
|
|
|
HANDLE map_handle = CreateFileMapping( |
|
|
|
INVALID_HANDLE_VALUE, // use paging file
|
|
|
|
INVALID_HANDLE_VALUE, // use paging file
|
|
|
|