0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-11 22:59:41 -04:00
deno/cli/tools/bench/mitata.rs
Nathan Whitaker ee4c14a550
chore: update to rust 1.85 (#28236)
Updates to use rust 1.85. Doesn't move to the 2024 edition, as that's a
fair bit more involved.

A nice side benefit is that the new rustc version seems to lead to a
slight reduction in binary size (at least on mac):

```
    FILE SIZE   
 -------------- 
  +4.3%  +102Ki    __DATA_CONST,__const
  [NEW] +69.3Ki    __TEXT,__literals
  [NEW] +68.5Ki    Rebase Info
  +5.0% +39.9Ki    __TEXT,__unwind_info
   +57% +8.85Ki    [__TEXT]
  [NEW] +8.59Ki    Lazy Binding Info
  [NEW] +5.16Ki    __TEXT,__stub_helper
  [NEW] +3.58Ki    Export Info
  [NEW] +3.42Ki    __DATA,__la_symbol_ptr
  -0.1%    -726    [12 Others]
 -21.4% -3.10Ki    [__DATA_CONST]
 -95.8% -3.39Ki    __DATA_CONST,__got
 -20.9% -3.43Ki    [__DATA]
  -0.5% -4.52Ki    Code Signature
 -100.0% -11.6Ki    [__LINKEDIT]
  -1.0% -43.5Ki    Symbol Table
  -1.6% -44.0Ki    __TEXT,__gcc_except_tab
  -0.2% -48.1Ki    __TEXT,__const
  -3.3% -78.6Ki    __TEXT,__eh_frame
  -0.7%  -320Ki    __TEXT,__text
  -1.5%  -334Ki    String Table
  -0.5%  -586Ki    TOTAL
```
2025-02-25 08:50:01 -08:00

393 lines
10 KiB
Rust

// Copyright 2022 evanwashere
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
use crate::colors;
/// Taken from https://stackoverflow.com/a/76572321
fn precision_f64(x: f64, decimals: u32) -> f64 {
if x == 0. || decimals == 0 {
0.
} else {
let shift = decimals as i32 - x.abs().log10().ceil() as i32;
let shift_factor = 10_f64.powi(shift);
(x * shift_factor).round() / shift_factor
}
}
fn avg_to_iter_per_s(time: f64) -> String {
let iter_per_s = precision_f64(1e9 / time, 4);
let (decimals, fractional) = into_decimal_and_fractional_parts(iter_per_s);
human_readable_decimal_with_fractional(decimals, fractional)
}
/// Return a tuple representing decimal part of provided float, as well as its
/// first fractional digit.
fn into_decimal_and_fractional_parts(num: f64) -> (i64, i64) {
let mut decimal_part = num.floor() as i64;
let fractional_part = {
let decs = ((num - num.floor()) * 10.0).round();
if decs == 10.0 {
decimal_part += 1;
0
} else {
decs as i64
}
};
(decimal_part, fractional_part)
}
fn human_readable_decimal_with_fractional(
decimal: i64,
fractional: i64,
) -> String {
// Sweet one-liner to separate integer by commas from:
// https://stackoverflow.com/a/67834588/21759102
let fmt_decimal = decimal
.to_string()
.as_bytes()
.rchunks(3)
.rev()
.map(std::str::from_utf8)
.collect::<Result<Vec<&str>, _>>()
.unwrap()
.join(",");
if fmt_decimal.len() >= 4 {
fmt_decimal
} else {
format!("{}.{}", fmt_decimal, fractional)
}
}
pub fn fmt_duration(time: f64) -> String {
if time < 1e0 {
return format!("{:.1} ps", time * 1e3);
}
if time < 1e3 {
return format!("{:.1} ns", time);
}
if time < 1e6 {
return format!("{:.1} µs", time / 1e3);
}
if time < 1e9 {
return format!("{:.1} ms", time / 1e6);
}
if time < 1e12 {
return format!("{:.1} s", time / 1e9);
}
if time < 36e11 {
return format!("{:.1} m", time / 60e9);
}
format!("{:.1} h", time / 36e11)
}
pub mod cpu {
#![allow(dead_code)]
pub fn name() -> String {
#[cfg(target_os = "linux")]
return linux();
#[cfg(target_os = "macos")]
return macos();
#[cfg(target_os = "windows")]
return windows();
#[allow(unreachable_code)]
{
"unknown".to_string()
}
}
pub fn macos() -> String {
let mut sysctl = std::process::Command::new("sysctl");
sysctl.arg("-n");
sysctl.arg("machdep.cpu.brand_string");
std::str::from_utf8(
&sysctl
.output()
.map(|x| x.stdout)
.unwrap_or(Vec::from("unknown")),
)
.unwrap()
.trim()
.to_string()
}
pub fn windows() -> String {
let mut wmi = std::process::Command::new("wmic");
wmi.arg("cpu");
wmi.arg("get");
wmi.arg("name");
match wmi.output() {
Err(_) => String::from("unknown"),
Ok(x) => {
let x = String::from_utf8_lossy(&x.stdout);
x.lines().nth(1).unwrap_or("unknown").trim().to_string()
}
}
}
pub fn linux() -> String {
let info = std::fs::read_to_string("/proc/cpuinfo").unwrap_or_default();
for line in info.lines() {
let mut iter = line.split(':');
let key = iter.next().unwrap_or("");
if key.contains("Hardware")
|| key.contains("Processor")
|| key.contains("chip type")
|| key.contains("model name")
|| key.starts_with("cpu type")
|| key.starts_with("cpu model")
{
return iter.next().unwrap_or("unknown").trim().to_string();
}
}
String::from("unknown")
}
}
pub mod reporter {
use super::*;
#[derive(Clone, PartialEq)]
pub struct Error {
pub message: String,
pub stack: Option<String>,
}
#[derive(Clone, PartialEq)]
pub struct BenchmarkStats {
pub avg: f64,
pub min: f64,
pub max: f64,
pub p75: f64,
pub p99: f64,
pub p995: f64,
}
#[derive(Clone, PartialEq)]
pub struct GroupBenchmark {
pub name: String,
pub group: String,
pub baseline: bool,
pub stats: BenchmarkStats,
}
#[derive(Clone, PartialEq)]
pub struct Options {
size: usize,
pub avg: bool,
pub min_max: bool,
pub percentiles: bool,
}
impl Options {
pub fn new(names: &[&str]) -> Options {
Options {
avg: true,
min_max: true,
size: size(names),
percentiles: true,
}
}
}
pub fn size(names: &[&str]) -> usize {
let mut max = 9;
for name in names {
if max < name.len() {
max = name.len();
}
}
2 + max
}
pub fn br(options: &Options) -> String {
let mut s = String::new();
s.push_str(&"-".repeat(options.size));
if options.avg {
s.push(' ');
s.push_str(&"-".repeat(15 + 1 + 13));
}
if options.min_max {
s.push(' ');
s.push_str(&"-".repeat(21));
}
if options.percentiles {
s.push(' ');
s.push_str(&"-".repeat(8 + 1 + 8 + 1 + 8));
}
s
}
pub fn benchmark_error(n: &str, e: &Error, options: &Options) -> String {
let size = options.size;
let mut s = String::new();
s.push_str(&format!("{:<size$}", n));
s.push_str(&format!(" {}: {}", colors::red("error"), e.message));
if let Some(ref stack) = e.stack {
s.push('\n');
s.push_str(&colors::gray(stack).to_string());
}
s
}
pub fn header(options: &Options) -> String {
let size = options.size;
let mut s = String::new();
s.push_str(&format!("{:<size$}", "benchmark"));
if options.avg {
s.push_str(&format!(" {:<15}", "time/iter (avg)"));
s.push_str(&format!(" {:>13}", "iter/s"));
}
if options.min_max {
s.push_str(&format!(" {:^21}", "(min … max)"));
}
if options.percentiles {
s.push_str(&format!(" {:>8} {:>8} {:>8}", "p75", "p99", "p995"));
}
s
}
pub fn benchmark(
name: &str,
stats: &BenchmarkStats,
options: &Options,
) -> String {
let size = options.size;
let mut s = String::new();
s.push_str(&format!("{:<size$}", name));
if options.avg {
s.push_str(&format!(
" {}",
colors::yellow(&format!("{:>15}", fmt_duration(stats.avg)))
));
s.push_str(&format!(" {:>13}", &avg_to_iter_per_s(stats.avg)));
}
if options.min_max {
s.push_str(&format!(
" ({}{})",
colors::cyan(format!("{:>8}", fmt_duration(stats.min))),
colors::magenta(format!("{:>8}", fmt_duration(stats.max)))
));
}
if options.percentiles {
s.push_str(
&colors::magenta(format!(
" {:>8} {:>8} {:>8}",
fmt_duration(stats.p75),
fmt_duration(stats.p99),
fmt_duration(stats.p995)
))
.to_string(),
);
}
s
}
pub fn summary(benchmarks: &[GroupBenchmark]) -> String {
let mut s = String::new();
let mut benchmarks = benchmarks.to_owned();
benchmarks.sort_by(|a, b| a.stats.avg.partial_cmp(&b.stats.avg).unwrap());
let baseline = benchmarks
.iter()
.find(|b| b.baseline)
.unwrap_or(&benchmarks[0]);
s.push_str(&format!(
"{}\n {}",
colors::gray("summary"),
colors::cyan_bold(&baseline.name)
));
for b in benchmarks.iter().filter(|b| *b != baseline) {
let faster = b.stats.avg >= baseline.stats.avg;
let x_faster = precision_f64(
if faster {
b.stats.avg / baseline.stats.avg
} else {
baseline.stats.avg / b.stats.avg
},
4,
);
let diff = if x_faster > 1000. {
&format!("{:>9.0}", x_faster)
} else {
&format!("{:>9.2}", x_faster)
};
s.push_str(&format!(
"\n{}x {} than {}",
if faster {
colors::green(diff)
} else {
colors::red(diff)
},
if faster { "faster" } else { "slower" },
colors::cyan_bold(&b.name)
));
}
s
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_into_decimal_and_fractional_parts() {
assert_eq!(into_decimal_and_fractional_parts(10.0), (10, 0));
assert_eq!(into_decimal_and_fractional_parts(10.1), (10, 1));
assert_eq!(into_decimal_and_fractional_parts(10.2), (10, 2));
assert_eq!(into_decimal_and_fractional_parts(10.3), (10, 3));
assert_eq!(into_decimal_and_fractional_parts(10.4), (10, 4));
assert_eq!(into_decimal_and_fractional_parts(10.5), (10, 5));
assert_eq!(into_decimal_and_fractional_parts(10.6), (10, 6));
assert_eq!(into_decimal_and_fractional_parts(10.7), (10, 7));
assert_eq!(into_decimal_and_fractional_parts(10.8), (10, 8));
assert_eq!(into_decimal_and_fractional_parts(10.9), (10, 9));
assert_eq!(into_decimal_and_fractional_parts(10.99), (11, 0));
}
#[test]
fn test_avg_to_iter_per_s() {
assert_eq!(avg_to_iter_per_s(55.85), "17,910,000");
assert_eq!(avg_to_iter_per_s(64_870_000.0), "15.4");
assert_eq!(avg_to_iter_per_s(104_370_000.0), "9.6");
assert_eq!(avg_to_iter_per_s(640_000.0), "1,563");
assert_eq!(avg_to_iter_per_s(6_400_000.0), "156.3");
assert_eq!(avg_to_iter_per_s(46_890_000.0), "21.3");
assert_eq!(avg_to_iter_per_s(100_000_000.0), "10.0");
assert_eq!(avg_to_iter_per_s(1_000_000_000.0), "1.0");
assert_eq!(avg_to_iter_per_s(5_920_000_000.0), "0.2");
}
}