summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-05-29 01:22:31 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-05-29 01:22:31 +0200
commit9d7c1924f1d0e9f79e31da4b84d9da12c3d37945 (patch)
treef3a98df3fdb4a87a1ecd321cb96aa8255b95d615 /benchmarks
parentdce86f8f9ad919fa2dc1db043209fe1b1c9f08de (diff)
chore: improve parser, clean up interpreter loop
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/benches/selfhosted.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/benchmarks/benches/selfhosted.rs b/benchmarks/benches/selfhosted.rs
index 4241eea..441923b 100644
--- a/benchmarks/benches/selfhosted.rs
+++ b/benchmarks/benches/selfhosted.rs
@@ -60,11 +60,11 @@ fn criterion_benchmark(c: &mut Criterion) {
}
{
- let mut group = c.benchmark_group("selfhosted");
- group.bench_function("native", |b| b.iter(run_native));
- group.bench_function("tinywasm", |b| b.iter(|| run_tinywasm(TINYWASM)));
- group.bench_function("wasmi", |b| b.iter(|| run_wasmi(TINYWASM)));
- group.bench_function("wasmer", |b| b.iter(|| run_wasmer(TINYWASM)));
+ // let mut group = c.benchmark_group("selfhosted");
+ // group.bench_function("native", |b| b.iter(run_native));
+ // group.bench_function("tinywasm", |b| b.iter(|| run_tinywasm(TINYWASM)));
+ // group.bench_function("wasmi", |b| b.iter(|| run_wasmi(TINYWASM)));
+ // group.bench_function("wasmer", |b| b.iter(|| run_wasmer(TINYWASM)));
}
}