-
Notifications
You must be signed in to change notification settings - Fork 6
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
valgrind reports a ton of 'Uninitialised byte(s) found during client check request' #11
Comments
A different one |
The uninitialised bytes are probably a result of the internal buffer size and the actually allocated buffers size (one page by default). It wouldn't make much sense to initialise the whole buffer just to make valgrind happy. Could also be internal OpenMPI stuff, if you can try MPICH and see if things change. The I think when dealing with network buffers and DMA accesses, there's plenty of theses errors to be expected. |
Look at ./inner_product_mpi
If you look closely it always happens within
/usr/lib/openmpi/libopen-pal.so
. I want to make sure that those invocations are done in the right way and the reported problems are due to/usr/lib/openmpi/libopen-pal.so
.I created a suppression file for valgrind which suppresses those warnings (see attachment)
The text was updated successfully, but these errors were encountered: