-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple memory leaks in DART #140
Comments
The most interesting and most pressing is #46 actually |
I already fixed a host of issues in
@fuchsto Could you please look at this test? The test seems suspicious in the following line:
Isn't that reading beyond the bounds of the |
@devreal Awesome, looks way better now. Yes, you are probably right with the out-of-bounds; checking this now. |
@devreal You can retry now, the out-of-bounds fix is merged. |
Looks good, seems fixed! Another issue I found: The implementation of
|
Yes, this is a refactoring ToDo, we should use |
One more thing: Is |
No, but that's actually not a bug I think: #137 |
OK, I see. Not calling |
Cleanup of |
On multiple occasions memory does not seem to be free'd properly in DART. Most of the leaks seem to stem from the use of MPI groups and a missing MPI_Group_free, e.g., :
However, there are other leaks that are not related to MPI groups, e.g., :
I'm working on a fix to resolve these leaks.
The text was updated successfully, but these errors were encountered: