Memory issues on Firedrake #2865
-
I have recently learned about some of the memory issues with Firedrake. I think it would be a good idea to list them all somewhere on the website. The ones I am aware of are:
Are there other issues I should be aware of? In general, what is the procedure to follow to detect memory leaks? How to interpret the output of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In general we try to hide memory concerns from the users as much as possible. I think that the two issues you mention here should be regarded as bugs and hence fixed, rather than documented. Specifically:
To detect memory leaks we recommend using @JDBetteridge may have more to say on this. |
Beta Was this translation helpful? Give feedback.
In general we try to hide memory concerns from the users as much as possible. I think that the two issues you mention here should be regarded as bugs and hence fixed, rather than documented. Specifically:
Constant
needing adomain
issue and hopefully will have it fixed within the month.To detect memory leaks we recommend using
memory_profiler
. This is documented in the manual here. We have also recently documented …