mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 04:54:26 +00:00
Add a --no-adl option to disable ADL monitoring and GPU settings.
This commit is contained in:
parent
26d1264c00
commit
01a0d0a745
10
main.c
10
main.c
@ -225,6 +225,7 @@ static int opt_shares;
|
|||||||
static bool opt_fail_only;
|
static bool opt_fail_only;
|
||||||
bool opt_autofan;
|
bool opt_autofan;
|
||||||
bool opt_autoengine;
|
bool opt_autoengine;
|
||||||
|
bool opt_noadl;
|
||||||
|
|
||||||
char *opt_kernel_path;
|
char *opt_kernel_path;
|
||||||
char *cgminer_path;
|
char *cgminer_path;
|
||||||
@ -1352,7 +1353,11 @@ static struct opt_table opt_config_table[] = {
|
|||||||
opt_set_charp, NULL, &opt_stderr_cmd,
|
opt_set_charp, NULL, &opt_stderr_cmd,
|
||||||
"Use custom pipe cmd for output messages"),
|
"Use custom pipe cmd for output messages"),
|
||||||
#endif // defined(unix)
|
#endif // defined(unix)
|
||||||
|
#ifdef HAVE_ADL
|
||||||
|
OPT_WITHOUT_ARG("--no-adl",
|
||||||
|
opt_set_bool, &opt_noadl,
|
||||||
|
"Disable the ATI display library used for monitoring and setting GPU parameters"),
|
||||||
|
#endif
|
||||||
OPT_WITHOUT_ARG("--no-longpoll",
|
OPT_WITHOUT_ARG("--no-longpoll",
|
||||||
opt_set_invbool, &want_longpoll,
|
opt_set_invbool, &want_longpoll,
|
||||||
"Disable X-Long-Polling support"),
|
"Disable X-Long-Polling support"),
|
||||||
@ -5288,7 +5293,8 @@ int main (int argc, char *argv[])
|
|||||||
get_datestamp(datestamp, &total_tv_start);
|
get_datestamp(datestamp, &total_tv_start);
|
||||||
|
|
||||||
#ifdef HAVE_OPENCL
|
#ifdef HAVE_OPENCL
|
||||||
init_adl(nDevs);
|
if (!opt_noadl)
|
||||||
|
init_adl(nDevs);
|
||||||
bool failmessage = false;
|
bool failmessage = false;
|
||||||
|
|
||||||
/* start GPU mining threads */
|
/* start GPU mining threads */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user