Skip to content

Commit

Permalink
Fixed cli error
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrlvi committed Aug 23, 2022
1 parent e041aac commit bf361d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/cuda/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)]
Expand Down
2 changes: 1 addition & 1 deletion plugins/opencl/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bf361d0

Please sign in to comment.