diff --git a/plugins/cuda/src/cli.rs b/plugins/cuda/src/cli.rs index 4cf9c10..bce90f7 100644 --- a/plugins/cuda/src/cli.rs +++ b/plugins/cuda/src/cli.rs @@ -50,7 +50,7 @@ pub struct CudaOpt { )] pub cuda_no_blocking_sync: bool, #[clap( - long = "nonce-gen", + long = "cuda-nonce-gen", help = "The random method used to generate nonces. Options: (i) xoshiro - each thread in GPU will have its own random state, creating a (pseudo-)independent xoshiro sequence (ii) lean - each GPU will have a single random nonce, and each GPU thread will work on nonce + thread id.", default_value = "lean" )] diff --git a/plugins/opencl/src/cli.rs b/plugins/opencl/src/cli.rs index a1e72f0..95c1d5a 100644 --- a/plugins/opencl/src/cli.rs +++ b/plugins/opencl/src/cli.rs @@ -44,7 +44,7 @@ pub struct OpenCLOpt { )] pub experimental_amd: bool, #[clap( - long = "nonce-gen", + long = "opencl-nonce-gen", help = "The random method used to generate nonces. Options: (i) xoshiro (ii) lean", long_help = "The random method used to generate nonces. Options: (i) xoshiro - each thread in GPU will have its own random state, creating a (pseudo-)independent xoshiro sequence (ii) lean - each GPU will have a single random nonce, and each GPU thread will work on nonce + thread id.", default_value = "lean"