diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-05-05 14:21:57 +0300 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-05-05 15:07:49 +0300 |
| commit | 480a98015ca577968c635b7f0b86adeb7b259adb (patch) | |
| tree | 7ded9ad4b6c6c56bd774d4cb20933da864b90284 | |
| parent | 35ee63c12e5e50ff5fb5266c9c3bece8f6d52f2b (diff) | |
| download | zkVMs-benchmarks-480a98015ca577968c635b7f0b86adeb7b259adb.tar zkVMs-benchmarks-480a98015ca577968c635b7f0b86adeb7b259adb.tar.gz zkVMs-benchmarks-480a98015ca577968c635b7f0b86adeb7b259adb.zip | |
fix(zkvms_host_io): Remove millis flag
The usages of this flag were removed when we introduced our JSON metrics
format.
| -rw-r--r-- | zkvms_host_io/src/lib.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/zkvms_host_io/src/lib.rs b/zkvms_host_io/src/lib.rs index 0abfc80..6737f95 100644 --- a/zkvms_host_io/src/lib.rs +++ b/zkvms_host_io/src/lib.rs @@ -48,10 +48,6 @@ struct Cli { #[arg(short, long, requires = "benchmark")] repeat: Option<usize>, - /// Output timings as milliseconds instead of seconds - #[arg(short, long, requires = "benchmark")] - millis: bool, - /// Put the benchmark's formatted output into a file of the given path #[arg(short = 'o', long, requires = "benchmark")] metrics_output: Option<String>, @@ -73,7 +69,6 @@ pub struct RunWith { pub run_type: RunType, pub benchmarking: bool, pub runs: usize, - pub millis: bool, pub output_file: Option<String>, pub append: bool, @@ -142,7 +137,6 @@ pub fn read_args() -> RunWith { run_type: cli.run_type, benchmarking: cli.benchmark, runs: cli.repeat.unwrap_or(1), - millis: cli.millis, output_file: cli.metrics_output, append: cli.append, |
