switch it over to 0 nanoseconds for use with process-data.py in other repo

This commit is contained in:
askiiart 2024-11-17 23:17:00 -06:00
parent 6d09324db7
commit ef14a7f1ea
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30

View file

@ -150,7 +150,7 @@ pub fn benchmark() {
let rand_read = format!("{:.5?}", random_read(path.clone())); let rand_read = format!("{:.5?}", random_read(path.clone()));
println!("Random read (1024x 1 MiB): {}", rand_read); println!("Random read (1024x 1 MiB): {}", rand_read);
let mut rand_latency: String = "0ms".to_string(); let mut rand_latency: String = "0ns".to_string();
if fs != "data/mountpoints/fuse-archive-tar" { if fs != "data/mountpoints/fuse-archive-tar" {
rand_latency = format!("{:.5?}", random_read_latency(path.clone())); rand_latency = format!("{:.5?}", random_read_latency(path.clone()));
} }