File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
//! 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.
2
5
3
6
use alacritty_test:: { pty_spawn, PtyExt , Terminal } ;
4
7
use reedline:: { DefaultPrompt , Reedline , Signal } ;
@@ -52,11 +55,13 @@ fn main() -> std::io::Result<()> {
52
55
break ;
53
56
}
54
57
}
55
- total_latency += start_time. elapsed ( ) ;
58
+ let latency = start_time. elapsed ( ) ;
59
+ total_latency += latency;
56
60
57
61
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 )
60
65
) ;
61
66
62
67
// delete the keystroke
You can’t perform that action at this time.
0 commit comments