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
I Set INITIAL_MEMORY =100MB, and MAXIMUM_MEMORY = 1000MB, -s ALLOW_MEMORY_GROWTH=0
the .js is new WebAssembly.Memory({"initial":INITIAL_MEMORY/65536,"maximum":INITIAL_MEMORY/65536,"shared":true});
and if i set -s ALLOW_MEMORY_GROWTH=1:
the .js is new WebAssembly.Memory({"initial":INITIAL_MEMORY/65536,"maximum":1048576e3/65536,"shared":true});
so if i want to use the Memory greater than 100MB , i must set -s ALLOW_MEMORY_GROWTH=1 ?