You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modify/Allocate required memory size as needed so we never run into out of bounds memory error.
Make it like a rune.json file (similar to package.json).
The text was updated successfully, but these errors were encountered:
We should be able to directly calculate the expected memory usage from a Runefile. I don't think wasmer-runtime provides an explicit hook for capping the amount of memory given to an Instance, but we could always customise the global allocator (wee_alloc) to make sure it only ever requests a certain number of pages from the runtime.
That said, the phrase "out of bounds memory error" is oddly specific, and sounds a lot more like a pointer or indexing issue than unbounded memory usage.
Modify/Allocate required memory size as needed so we never run into out of bounds memory error.
Make it like a rune.json file (similar to package.json).
The text was updated successfully, but these errors were encountered: