177 breaking releases

new 0.179.0 Jan 9, 2025
0.178.0 Dec 19, 2024
0.177.0 Dec 17, 2024
0.174.0 Nov 28, 2024
0.7.0 Jul 26, 2021

#27 in Profiling

Download history 30/week @ 2024-09-20 297/week @ 2024-09-27 212/week @ 2024-10-04 230/week @ 2024-10-11 218/week @ 2024-10-18 274/week @ 2024-10-25 215/week @ 2024-11-01 174/week @ 2024-11-08 210/week @ 2024-11-15 183/week @ 2024-11-22 118/week @ 2024-11-29 305/week @ 2024-12-06 249/week @ 2024-12-13 42/week @ 2024-12-20 54/week @ 2024-12-27 50/week @ 2025-01-03

442 downloads per month
Used in 16 crates

MIT license

8KB
177 lines

Benching utility for deno_core op system

Example:

use deno_bench_util::bench_js_sync;
use deno_bench_util::bench_or_profile;
use deno_bench_util::bencher::benchmark_group;
use deno_bench_util::bencher::Bencher;
use deno_core::Extension;

#[op2]
#[number]
fn op_nop() -> usize {
  9
}

fn setup() -> Vec<Extension> {
  vec![Extension {
    name: "my_ext"
    ops: std::borrow::Cow::Borrowed(&[op_nop::DECL])
  }]
}

fn bench_op_nop(b: &mut Bencher) {
  bench_js_sync(b, r#"Deno.core.ops.op_nop();"#, setup);
}

benchmark_group!(benches, bench_op_nop);
bench_or_profile!(benches);

Dependencies

~86MB
~1.5M SLoC