<<" --cuda-block-size Set the CUDA block work size. Default is "<<toString(ethash_cuda_miner::c_defaultBlockSize)<<endl
<<" --cuda-grid-size Set the CUDA grid size. Default is "<<toString(ethash_cuda_miner::c_defaultGridSize)<<endl
<<" --cuda-streams Set the number of CUDA streams. Default is "<<toString(ethash_cuda_miner::c_defaultNumStreams)<<endl
<<" --cuda-schedule <mode> Set the schedule mode for CUDA threads waiting for CUDA devices to finish work. Default is auto. Possible values are:"<<endl
<<" --cuda-schedule <mode> Set the schedule mode for CUDA threads waiting for CUDA devices to finish work. Default is sync. Possible values are:"<<endl
<<" auto - Uses a heuristic based on the number of active CUDA contexts in the process C and the number of logical processors in the system P. If C > P, then yield else spin."<<endl
<<" spin - Instruct CUDA to actively spin when waiting for results from the device."<<endl
<<" yield - Instruct CUDA to yield its thread when waiting for results from the device."<<endl