Document Actions
My MPI application runs out of memory.
Up to Table of Contents
You can limit the communication buffer counts and sizes using the mca parameters, this has helped for some applications that have experienced this problem.
For instance to limit the number of buffers used to 1000 you set this on the command line:
mpirun --mca btl_openib_free_list_max 1000 mpi-application.x
It is recommended to experiment with this to obtain optimal values, as setting it too low will decrease performance.
For more information about openmpi tunables see here.

