168 breaking releases
new 0.170.0 | Nov 6, 2024 |
---|---|
0.168.0 | Oct 25, 2024 |
0.158.0 | Jul 31, 2024 |
0.137.0 | Mar 28, 2024 |
0.7.0 | Jul 26, 2021 |
#33 in Profiling
923 downloads per month
Used in 14 crates
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
~85MB
~1.5M SLoC