We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0125b commit 99a1fecCopy full SHA for 99a1fec
collector/src/runtime/mod.rs
@@ -131,7 +131,7 @@ fn print_stats(result: &BenchmarkResult) {
131
132
print_metric(result, "Instructions", |m| m.instructions);
133
print_metric(result, "Cycles", |m| m.cycles);
134
- print_metric(result, "Wall time [us]", |m| {
+ print_metric(result, "Wall time [µs]", |m| {
135
Some(m.wall_time.as_micros() as u64)
136
});
137
print_metric(result, "Branch misses", |m| m.branch_misses);
0 commit comments