Out of memory error when calling a MATLAB JA Builder compiled component
1 次查看(过去 30 天)
显示 更早的评论
I'm having a strange problem with calling a MATLAB JA Builder compiled code in Java. Details are as follows:
- The code does a load() on a large .mat file
- If the mat file was opened in MATLAB (by importing the .mat), everything works fine and takes up ~900MB of memory
- If the code is called from an Java app (which simply imports the function built by JA Builder), I get out of memory from the MATLAB script
- I have tried setting Xmx really high, but that doesn't seem to do anything at all
- What is weirder, is that if the java program is run through the Eclipse debugger, it can use up to 900MB of ram and the load() function succeeds
Does anyone know what could be happening?
Thanks in advanced
----------------
I have attached a part of the stack trace:
??? Error using ==> load Out of memory. Type HELP MEMORY for your options.
... Matlab M-code Stack Trace ... file C:\Users\HiME\AppData\Local\MathWorks\mcr_cache_v78\fileProcesso_39586D5669D9A968B2CD5231A43620E4\fileProcesso\getHeaders.m,name getHeaders,line at 8. com.mathworks.toolbox.javabuilder.MWException: Error using ==> load Out of memory. Type HELP MEMORY for your options.Error in =>getHeaders.m at 8
0 个评论
回答(1 个)
Joan Puig
2011-9-12
Hi,
Are you properly disposing the native references in your java code?
MWArray.disposeArray(...)
We found not doing that to be a problem for us under certain conditions.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Java Package Integration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!