Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Fix GPU reqs argument for program deployment (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuommaki authored Mar 5, 2024
1 parent c7b34ec commit 4fb50c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ enum ConfCommands {
#[clap(long = "provermem", value_name = "PROVER MEM")]
prover_mem: Option<u64>,
/// number of gpus to allocate for the proving task (currently only 0 or 1 allowed).
#[clap(long = "provermem", value_name = "PROVER GPUS", value_parser = gpus_parser)]
#[clap(long = "provergpus", value_name = "PROVER GPUS", value_parser = gpus_parser)]
prover_gpus: Option<u64>,
/// number of cpus to allocate for the proving task.
#[clap(long = "verifiercpus", value_name = "VERIFIER CPUS")]
Expand All @@ -70,7 +70,7 @@ enum ConfCommands {
#[clap(long = "verifiermem", value_name = "VERIFIER MEM")]
verifier_mem: Option<u64>,
/// number of gpus to allocate for the proving task (currently only 0 or 1 allowed).
#[clap(long = "verifiermem", value_name = "VERIFIER GPUS", value_parser = gpus_parser)]
#[clap(long = "verifiergpus", value_name = "VERIFIER GPUS", value_parser = gpus_parser)]
verifier_gpus: Option<u64>,
/// Address the local http server use by the node to download images.
#[clap(
Expand Down

0 comments on commit 4fb50c4

Please sign in to comment.