Skip to content

Commit

Permalink
Downgrade how much virtual memory the VM execution bench tries to tak…
Browse files Browse the repository at this point in the history
…e. It shouldn't need much at all.
  • Loading branch information
rdaum committed Jan 7, 2024
1 parent 3fd7730 commit 1f786c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/kernel/benches/vm_benches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ use moor_values::var::Var;
use moor_values::{AsByteBuffer, NOTHING, SYSTEM_OBJECT};

async fn create_worldstate() -> TupleBoxWorldStateSource {
TupleBoxWorldStateSource::open(None, 1 << 30).await;
let (ws_source, _) = TupleBoxWorldStateSource::open(None, 1 << 30).await;
let (ws_source, _) = TupleBoxWorldStateSource::open(None, 1 << 28).await;
let mut tx = ws_source.new_world_state().await.unwrap();
let _sysobj = tx
.create_object(SYSTEM_OBJECT, NOTHING, SYSTEM_OBJECT, BitEnum::all())
Expand Down

0 comments on commit 1f786c4

Please sign in to comment.