We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 937840a commit 62f6666Copy full SHA for 62f6666
2 files changed
host/src/bin/pydriver_run.rs
@@ -44,7 +44,7 @@ fn main() -> Result<()> {
44
let t_evolve = Instant::now();
45
let mut sandbox = Sandbox::builder(&kernel)
46
.initrd_file(&initrd)
47
- .heap_size(1280 * 1024 * 1024)
+ .heap_size(2560 * 1024 * 1024)
48
.build()?;
49
eprintln!(
50
"[timing] evolve={:.1}ms",
host/src/bin/pyhl.rs
@@ -463,7 +463,7 @@ fn cmd_setup(args: SetupArgs) -> Result<()> {
463
{
464
let mut builder = Sandbox::builder(&dst_kernel)
465
.initrd_file(&dst_initrd)
466
- .heap_size(1280 * 1024 * 1024);
+ .heap_size(2560 * 1024 * 1024);
467
for p in &setup_preopens {
468
builder = builder.preopen(p.clone());
469
}
0 commit comments