LeakSanitizer finds leak in simple MPI program

1.1k Views Asked by At

This simple program leaks memory according to LeakSanitizer.

#include <mpi.h>
int main(int argc, char *argv[])
{
    MPI_Init(&argc, &argv);
    MPI_Finalize();
    return 0;
}

I am linking it to Open MPI v1.10.2.

This other question asks almost the same thing but using valgrind instead of LeakSanitizer. The answers explain that the reported memory leaks are false positives and instruct how to suppress them when using valgrind.

I suppose that the memory leaks reported by LeakSanitizer are also false postives. Is that so? Is it possible to suppress them?

0

There are 0 best solutions below