Browse Source

Intensity 5 is too high for a normal desktop causing unacceptable lag so change the default to 4.

nfactor-troky
Con Kolivas 14 years ago
parent
commit
343ae85137
  1. 4
      cpu-miner.c

4
cpu-miner.c

@ -133,7 +133,7 @@ static enum sha256_algos opt_algo = ALGO_C;
static int nDevs; static int nDevs;
static int opt_n_threads = 1; static int opt_n_threads = 1;
static int num_processors; static int num_processors;
static int scan_intensity = 5; static int scan_intensity = 4;
static char *rpc_url; static char *rpc_url;
static char *rpc_userpass; static char *rpc_userpass;
static char *rpc_user, *rpc_pass; static char *rpc_user, *rpc_pass;
@ -187,7 +187,7 @@ static struct option_help options_help[] = {
"(-D) Enable debug output (default: off)" }, "(-D) Enable debug output (default: off)" },
{ "intensity", { "intensity",
"(-I) Intensity of scanning (0 - 10, default 5)" }, "(-I) Intensity of scanning (0 - 10, default 4)" },
{ "log", { "log",
"(-l) Interval in seconds between log output (default 5)" }, "(-l) Interval in seconds between log output (default 5)" },

Loading…
Cancel
Save