|
|
@@ -714,6 +714,9 @@ static struct opt_table opt_config_table[] = {
|
|
|
OPT_WITH_ARG("--gpu-fan",
|
|
|
set_gpu_fan, NULL, NULL,
|
|
|
"GPU fan percentage range - one value, range and/or comma separated list (e.g. 0-85,85,65)"),
|
|
|
+ OPT_WITH_ARG("--gpu-map",
|
|
|
+ set_gpu_map, NULL, NULL,
|
|
|
+ "Map OpenCL to ADL device order manually, paired CSV (e.g. 1:0,2:1 maps OpenCL 1 to ADL 0, 2 to 1)"),
|
|
|
OPT_WITH_ARG("--gpu-memclock",
|
|
|
set_gpu_memclock, NULL, NULL,
|
|
|
"Set the GPU memory (over)clock in Mhz - one value for all or separate by commas for per card"),
|
|
|
@@ -783,8 +786,8 @@ static struct opt_table opt_config_table[] = {
|
|
|
opt_set_bool, &opt_protocol,
|
|
|
"Verbose dump of protocol-level activities"),
|
|
|
OPT_WITH_ARG("--queue|-Q",
|
|
|
- set_int_0_to_10, opt_show_intval, &opt_queue,
|
|
|
- "Minimum number of work items to have queued (0 - 10)"),
|
|
|
+ set_int_0_to_9999, opt_show_intval, &opt_queue,
|
|
|
+ "Minimum number of work items to have queued (0+)"),
|
|
|
OPT_WITHOUT_ARG("--quiet|-q",
|
|
|
opt_set_bool, &opt_quiet,
|
|
|
"Disable logging output, display status and errors"),
|