mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
bench: core.encode/decode (#13750)
This commit is contained in:
parent
b171c19272
commit
291f01d9bd
@ -20,3 +20,7 @@ tokio = { version = "1.10.1", features = ["full"] }
|
||||
[[bench]]
|
||||
name = "op_baseline"
|
||||
harness = false
|
||||
|
||||
[[bench]]
|
||||
name = "utf8"
|
||||
harness = false
|
||||
|
112
bench_util/benches/utf8.rs
Normal file
112
bench_util/benches/utf8.rs
Normal file
@ -0,0 +1,112 @@
|
||||
use deno_bench_util::bench_js_sync_with;
|
||||
use deno_bench_util::bench_or_profile;
|
||||
use deno_bench_util::bencher::benchmark_group;
|
||||
use deno_bench_util::bencher::Bencher;
|
||||
use deno_bench_util::BenchOptions;
|
||||
use deno_core::Extension;
|
||||
|
||||
fn setup() -> Vec<Extension> {
|
||||
vec![Extension::builder()
|
||||
.js(vec![(
|
||||
"setup.js",
|
||||
Box::new(|| {
|
||||
Ok(
|
||||
r#"
|
||||
const hello = "hello world\n";
|
||||
const hello1k = hello.repeat(1e3);
|
||||
const hello1m = hello.repeat(1e6);
|
||||
const helloEncoded = Deno.core.encode(hello);
|
||||
const hello1kEncoded = Deno.core.encode(hello1k);
|
||||
const hello1mEncoded = Deno.core.encode(hello1m);
|
||||
"#
|
||||
.into(),
|
||||
)
|
||||
}),
|
||||
)])
|
||||
.build()]
|
||||
}
|
||||
|
||||
fn bench_utf8_encode_12_b(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.encode(hello);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
..Default::default()
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
fn bench_utf8_encode_12_kb(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.encode(hello1k);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
..Default::default()
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
fn bench_utf8_encode_12_mb(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.encode(hello1m);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
profiling_inner: 10,
|
||||
profiling_outer: 10,
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
fn bench_utf8_decode_12_b(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.decode(helloEncoded);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
..Default::default()
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
fn bench_utf8_decode_12_kb(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.decode(hello1kEncoded);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
..Default::default()
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
fn bench_utf8_decode_12_mb(b: &mut Bencher) {
|
||||
bench_js_sync_with(
|
||||
b,
|
||||
r#"Deno.core.decode(hello1mEncoded);"#,
|
||||
setup,
|
||||
BenchOptions {
|
||||
benching_inner: 1,
|
||||
profiling_inner: 10,
|
||||
profiling_outer: 10,
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
benchmark_group!(
|
||||
benches,
|
||||
bench_utf8_encode_12_b,
|
||||
bench_utf8_encode_12_kb,
|
||||
bench_utf8_encode_12_mb,
|
||||
bench_utf8_decode_12_b,
|
||||
bench_utf8_decode_12_kb,
|
||||
bench_utf8_decode_12_mb,
|
||||
);
|
||||
bench_or_profile!(benches);
|
@ -18,16 +18,46 @@ fn loop_code(iters: u64, src: &str) -> String {
|
||||
format!(r#"for(let i=0; i < {}; i++) {{ {} }}"#, iters, src,)
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone)]
|
||||
pub struct BenchOptions {
|
||||
pub benching_inner: u64,
|
||||
pub profiling_inner: u64,
|
||||
pub profiling_outer: u64,
|
||||
}
|
||||
|
||||
impl Default for BenchOptions {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
benching_inner: 1_000,
|
||||
profiling_inner: 1_000,
|
||||
profiling_outer: 10_000,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn bench_js_sync(
|
||||
b: &mut Bencher,
|
||||
src: &str,
|
||||
setup: impl FnOnce() -> Vec<Extension>,
|
||||
) {
|
||||
bench_js_sync_with(b, src, setup, Default::default())
|
||||
}
|
||||
|
||||
pub fn bench_js_sync_with(
|
||||
b: &mut Bencher,
|
||||
src: &str,
|
||||
setup: impl FnOnce() -> Vec<Extension>,
|
||||
opts: BenchOptions,
|
||||
) {
|
||||
let mut runtime = create_js_runtime(setup);
|
||||
let scope = &mut runtime.handle_scope();
|
||||
|
||||
// Increase JS iterations if profiling for nicer flamegraphs
|
||||
let inner_iters = 1000 * if is_profiling() { 10000 } else { 1 };
|
||||
let inner_iters = if is_profiling() {
|
||||
opts.profiling_inner * opts.profiling_outer
|
||||
} else {
|
||||
opts.benching_inner
|
||||
};
|
||||
// Looped code
|
||||
let looped_src = loop_code(inner_iters, src);
|
||||
|
||||
@ -48,6 +78,15 @@ pub fn bench_js_async(
|
||||
b: &mut Bencher,
|
||||
src: &str,
|
||||
setup: impl FnOnce() -> Vec<Extension>,
|
||||
) {
|
||||
bench_js_async_with(b, src, setup, Default::default())
|
||||
}
|
||||
|
||||
pub fn bench_js_async_with(
|
||||
b: &mut Bencher,
|
||||
src: &str,
|
||||
setup: impl FnOnce() -> Vec<Extension>,
|
||||
opts: BenchOptions,
|
||||
) {
|
||||
let mut runtime = create_js_runtime(setup);
|
||||
let tokio_runtime = tokio::runtime::Builder::new_current_thread()
|
||||
@ -56,11 +95,16 @@ pub fn bench_js_async(
|
||||
.unwrap();
|
||||
|
||||
// Looped code
|
||||
let looped = loop_code(1000, src);
|
||||
let inner_iters = if is_profiling() {
|
||||
opts.profiling_inner
|
||||
} else {
|
||||
opts.benching_inner
|
||||
};
|
||||
let looped = loop_code(inner_iters, src);
|
||||
let src = looped.as_ref();
|
||||
|
||||
if is_profiling() {
|
||||
for _ in 0..10000 {
|
||||
for _ in 0..opts.profiling_outer {
|
||||
tokio_runtime.block_on(inner_async(src, &mut runtime));
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user