We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6feecc commit e8b6f7aCopy full SHA for e8b6f7a
src/main.rs
@@ -39,10 +39,10 @@ enum Commands {
39
#[group(required = true, multiple = true)]
40
struct Sets {
41
/// GPU frequency offset
42
- #[arg(short, long)]
+ #[arg(short, long, allow_hyphen_values = true)]
43
freq_offset: Option<i32>,
44
/// GPU memory frequency offset
45
- #[arg(long = "mem-offset")]
+ #[arg(long = "mem-offset", allow_hyphen_values = true)]
46
mem_offset: Option<i32>,
47
/// GPU power limit in milliwatts
48
#[arg(short, long)]
0 commit comments