aboutsummaryrefslogtreecommitdiff
path: root/zkvms_host_io
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-05-05 14:21:57 +0300
committerKamen Mladenov <kamen@syndamia.com>2025-05-05 15:07:49 +0300
commit480a98015ca577968c635b7f0b86adeb7b259adb (patch)
tree7ded9ad4b6c6c56bd774d4cb20933da864b90284 /zkvms_host_io
parent35ee63c12e5e50ff5fb5266c9c3bece8f6d52f2b (diff)
downloadzkVMs-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.
Diffstat (limited to 'zkvms_host_io')
-rw-r--r--zkvms_host_io/src/lib.rs6
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,