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 c9d26f7 commit 52f3053Copy full SHA for 52f3053
1 file changed
executor/src/vm/memory.rs
@@ -44,7 +44,7 @@ pub type U64HashMap<V> = HashMap<u64, V, U64BuildHasher>;
44
pub const MAX_PUBLIC_OUTPUT_TOTAL_SIZE: u64 = 1024 * 1024;
45
/// Maximum size of the private input memory region (in bytes). 64 MiB so that a
46
/// whole `VmProof` can be passed as private input to a verifier guest (naive
47
-/// recursion); the previous 6.7 MiB was too small to hold real proofs.
+/// recursion).
48
pub const MAX_PRIVATE_INPUT_SIZE: u64 = 64 * 1024 * 1024;
49
/// Fixed high address where private input is mapped. Guest programs can read
50
/// directly from this address (ZisK-style memory-mapped input).
0 commit comments