Replies: 2 comments 9 replies
-
You can disable jiterpreter with |
Beta Was this translation helpful? Give feedback.
-
Hello, Any update/answer to this? I am interested in knowing this as well... I tried to set
in our Blazor WASM (standalone) .NET 8 application but it made no difference. I have some simple .NET code that allocates memory in 1MB chunks until it gets an OOM exception. This reliably always happens at 1767MB (in my case) - that is ".NET memory". The JS heap size is then 2165MB and never the expected 4GB. Not even the initial heap size I tried above seem to have any effect |
Beta Was this translation helpful? Give feedback.
-
I am working on a project that uses Blazor and can use a lot of memory. We would love to have Memory64 support as mentioned in #94108 but for now we are limited to increasing the size of the heap from 2gb to 4gb. But it looks like this is not fully supported? When I enable this in our project I get out of bounds errors that look like an int overflow:
Should we be able to use
<EmccMaximumHeapSize>4294901760</EmccMaximumHeapSize>
to increase the size of the heap or should we not do this? I have created a discussion instead of an issue because I cannot create a small project that reproduces this. It looks likejit_call
is part of the Jiterpreter. Is there an option to disable this so we can check if increasing the heap size only causes issues in the Jiterpreter?Beta Was this translation helpful? Give feedback.
All reactions