Skip to content

Commit 07f11a5

Browse files
committed
Update display format for typing_latency.rs
1 parent d32c3b5 commit 07f11a5

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

examples/typing_latency.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
//! Measure the typing latency of Reedline with default configurations.
2+
//!
3+
//! The result is not accurate on Windows, since alacritty has very bad latency
4+
//! response on Windows due to the way it implemented async-IO without IOCP.
25
36
use alacritty_test::{pty_spawn, PtyExt, Terminal};
47
use reedline::{DefaultPrompt, Reedline, Signal};
@@ -52,11 +55,13 @@ fn main() -> std::io::Result<()> {
5255
break;
5356
}
5457
}
55-
total_latency += start_time.elapsed();
58+
let latency = start_time.elapsed();
59+
total_latency += latency;
5660

5761
println!(
58-
"single keystroke latency = {:.2}ms, averaging over {loop_cnt} iterations",
59-
(total_latency.as_millis() as f64) / (loop_cnt as f64),
62+
"single keystroke latency = {:.2}ms, average latency = {:.2}ms over {loop_cnt} iterations",
63+
(latency.as_millis() as f64),
64+
(total_latency.as_millis() as f64) / (loop_cnt as f64)
6065
);
6166

6267
// delete the keystroke

0 commit comments

Comments
 (0)