I'm doing some rather long computations, which can easily span a few days. In the course of these computations, sometimes Mathematica will run out of memory. To this end, I've ended up resorting to something along the lines of:
ParallelEvaluate[$KernelID]; (* Force the kernels to launch *)
kernels = Kernels[];
Do[
If[Mod[iteration, n] == 0,
CloseKernels[kernels];
LaunchKernels[kernels];
ClearSystemCache[]];
(* Complicated stuff here *)
Export[...], (* If a computation ends early I don't want to lose past results *)
{iteration, min, max}]
This is great and all, but over time the main kernel accumulates memory. Currently, my main kernel is eating up roughly 1.4 GB of RAM. Is there any way I can force Mathematica to clear out the memory it's using? I've tried littering Share and Clear throughout the many Modules I'm using in my code, but the memory still seems to build up over time.
I've tried also to make sure I have nothing big and complicated running outside of a Module, so that something doesn't stay in scope too long. But even with this I still have my memory issues.
Is there anything I can do about this? I'm always going to have a large amount of memory being used, since most of my calculations involve several large and dense matrices (usually 1200 x 1200, but it can be more), so I'm wary about using MemoryConstrained.
Update:
The problem was exactly what Alexey Popkov stated in his answer. If you use Module, memory will leak slowly over time. It happened to be exacerbated in this case because I had multiple Module[..] statements. The "main" Module was within a ParallelTable where 8 kernels were running at once. Tack on the (relatively) large number of iterations, and this was a breeding ground for lots of memory leaks due to the bug with Module.
Modulevariables to which you assign someDownValuesinsideModule, or which you return from theModule(since those won't be garbage-collected), results accumulated inInandOut, and system cache. Generally, I'd make an effort to better identify the reason for memory accumulation, perhaps by simulating some parts of what you do in a simplified way. – Leonid Shifrin Jul 29 '11 at 11:28Modulevariables are not removed due to results accumulated in system cache? – Alexey Popkov Jul 29 '11 at 12:36Modulevariables withDownValues,In-Out, and system cache. I did not state that any of these necessarily affect one another. – Leonid Shifrin Jul 29 '11 at 12:46In-Outit is certainly true that it can cause non-deletionModulevariables, for example executeModule[{a}, a]in one cell and thenNames["`*"]in another. I just have not heard so far that the same effect may appear due to internal caching mechanism. Is it your hypothesis? – Alexey Popkov Jul 29 '11 at 13:00Modulevariables, I meant cases likeModule[{x}, x[a_, b_] := a + b; f[a_] := x[a, 1]], wherexis referenced by an external symbol (fhere). The problem is that even after weClearf, thisModule-generatedxand its definitions remain. Some of the things that can be such an external reference areInandOut, no question about it. Whether or not system cache can also be causing this, I don't know. – Leonid Shifrin Jul 29 '11 at 13:14