From e5f228647a64a389bd42c475d650aeb764bf70e7 Mon Sep 17 00:00:00 2001 From: David Chu Date: Mon, 20 Apr 2026 20:15:21 +0000 Subject: [PATCH] Latency/throughput print prefix fix --- hydro_optimize_examples/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hydro_optimize_examples/src/lib.rs b/hydro_optimize_examples/src/lib.rs index fdff30a..d954f0b 100644 --- a/hydro_optimize_examples/src/lib.rs +++ b/hydro_optimize_examples/src/lib.rs @@ -15,10 +15,10 @@ use std::time::Duration; /// Note: Must remain synchronized with definitions in hydro_optimize/deploy_and_analyze. /// Redefined here because we don't want to import hydro_optimize as a dependency. -// pub(crate) const LATENCY_PREFIX: &str = "HYDRO_OPTIMIZE_LAT:"; -// pub(crate) const THROUGHPUT_PREFIX: &str = "HYDRO_OPTIMIZE_THR:"; -pub(crate) const LATENCY_PREFIX: &str = "Latency:"; -pub(crate) const THROUGHPUT_PREFIX: &str = "Throughput:"; +pub(crate) const LATENCY_PREFIX: &str = "HYDRO_OPTIMIZE_LAT:"; +pub(crate) const THROUGHPUT_PREFIX: &str = "HYDRO_OPTIMIZE_THR:"; +// pub(crate) const LATENCY_PREFIX: &str = "Latency:"; +// pub(crate) const THROUGHPUT_PREFIX: &str = "Throughput:"; pub fn print_parseable_bench_results<'a, Aggregator>( aggregate_results: BenchResult>,