158 次重大发布
新功能 0.160.0 | 2024 年 8 月 22 日 |
---|---|
0.158.0 | 2024 年 7 月 31 日 |
0.137.0 | 2024 年 3 月 28 日 |
0.123.0 | 2023 年 12 月 21 日 |
0.7.0 | 2021 年 7 月 26 日 |
#79 在 性能分析
741 每月下载次数
被 12 个库 使用
8KB
177 代码行
为 deno_core
操作系统提供的基准测试工具
示例
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);
依赖关系
~85MB
~1.5M SLoC