-
Notifications
You must be signed in to change notification settings - Fork 41
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
mpi_type for std::pair leads to memory leaks #103
Comments
Thank you for pointing this out. I'll need to think about how to fix this. |
I think this fixes it: f301da7 |
Yep that does it! |
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Aug 15, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Aug 15, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Aug 30, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Aug 30, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Aug 31, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Sep 6, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Sep 11, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Sep 15, 2023
…t for now See pghysels/STRUMPACK#103 for more context
cticenhour
added a commit
to cticenhour/moose
that referenced
this issue
Sep 18, 2023
…t for now See pghysels/STRUMPACK#103 for more context
oanaoana
pushed a commit
to oanaoana/moose
that referenced
this issue
Oct 19, 2023
…t for now See pghysels/STRUMPACK#103 for more context
oanaoana
pushed a commit
to oanaoana/moose
that referenced
this issue
Nov 7, 2023
…t for now See pghysels/STRUMPACK#103 for more context
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This code in
MPIWrapper.hpp
leaks memoryIt is hardly a significant leak, but it showed up in our valgrind testing when updating MOOSE to recent PETSc (CI job https://civet.inl.gov/job/1698426/ on idaholab/moose#23502). We had the same
static
design pattern in https://github.com/libmesh/TIMPI for a long time, figuring that the few leaked bytes weren't a big deal. But enough users complained that we ended up changing to a RAII type design (TIMPI code here).Anyway this isn't a huge deal. We'll probably just add a suppression for this for now. Thanks for your solver work!
The text was updated successfully, but these errors were encountered: