Let me repeat what I think I understand.
You edited the file triton-vm/examples/factorial.rs
line 38 to be let public_input = PublicInput::from([bfe!(128_000)]);
. You then ran the factorial
example of Triton VM, for example, with cargo run --example factorial
. On a machine with 512 GiB of RAM, the example succeeds. On a machine with 128 GiB of RAM and 32 GiB of swap, the command fails. factorial.rs
has 80 lines, so I donโt know what line 96 does.
If you change the input to be 64_000 instead, the command succeeds on both machines. Is that correct?