Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/hyperlight_host/benches/benchmarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ fn guest_call_benchmark(c: &mut Criterion) {
fn sandbox_benchmark(c: &mut Criterion) {
let mut group = c.benchmark_group("sandboxes");

// Benchmarks the time to create a new uninintialized sandbox.
// Benchmarks the time to create a new uninitialized sandbox.
// Does **not** include the time to drop the sandbox.
group.bench_function("create_uninitialized_sandbox", |b| {
b.iter_with_large_drop(create_uninit_sandbox);
});

// Benchmarks the time to create a new uninintialized sandbox and drop it.
// Benchmarks the time to create a new uninitialized sandbox and drop it.
group.bench_function("create_uninitialized_sandbox_and_drop", |b| {
b.iter(create_uninit_sandbox);
});
Expand Down
Loading