mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: add README to bench_util/ (#10712)
This commit is contained in:
parent
c9db09630d
commit
8aa09ccba9
1 changed files with 29 additions and 0 deletions
29
bench_util/README.md
Normal file
29
bench_util/README.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Benching utility for `deno_core` op system
|
||||
|
||||
Example:
|
||||
|
||||
```rust
|
||||
use deno_bench_util::bench_or_profile;
|
||||
use deno_bench_util::bencher::{benchmark_group, Bencher};
|
||||
use deno_bench_util::bench_js_sync};
|
||||
|
||||
use deno_core::op_sync;
|
||||
use deno_core::serialize_op_result;
|
||||
use deno_core::JsRuntime;
|
||||
use deno_core::Op;
|
||||
use deno_core::OpState;
|
||||
|
||||
fn setup(runtime: &mut JsRuntime) {
|
||||
runtime.register_op("nop", |state, _| {
|
||||
Op::Sync(serialize_op_result(Ok(9), state))
|
||||
});
|
||||
runtime.sync_ops_cache();
|
||||
}
|
||||
|
||||
fn bench_op_nop(b: &mut Bencher) {
|
||||
bench_js_sync(b, r#"Deno.core.opSync("nop", null, null, null);"#, setup);
|
||||
}
|
||||
|
||||
benchmark_group!(benches, bench_op_nop);
|
||||
bench_or_profile!(benches);
|
||||
```
|
Loading…
Reference in a new issue