My C mex-compiled files are running out of memory (more specifically, my calls to mxMalloc sometimes return NULL). From a quick calculation I estimate that my files ask mxMalloc for about 500 MB of memory in total (maybe as much as 1 GB), and I run my files on a 64 bit Linux machine with 16 GB of memory running Matlab almost exclusively. Yet, mxMalloc returns NULL quite often.
I guess that that there are several reasons why this could happen (memory fragmentation, etc.), but in any case, 500 MB do not seem to be that much to ask from a 16-GB-memory machine.
I presume that my calls to mxMalloc request memory from Matlab's heap, but am not 100% sure about it ( mxMalloc requests are handled by Matlab after all, and not directly by the OS). So is there a way of increasing my mex file's "heap" size?
Thanks
mxFreemy data before returning, shouldn't that put the heap back into (pretty much) its original fragmentation state? – user815423426 Jan 22 '11 at 15:14