As others have mentioned, if you're only working with a handful of MPI processes you can try to use multiple gdb sessions, the redoubtable valgrind or roll your own printf / logging solution.
If you're using more processes than that, you really start needing a proper debugger. The OpenMPI FAQ recommends both Allinea DDT and TotalView.
I work on Allinea DDT. It's a full-featured, graphical source-code debugger so yes, you can:
- Debug or attach to (over 200k) MPI processes
- Step and pause them in groups or individually
- Add breakpoints, watches and tracepoints
- Catch memory errors and leaks
...and so on. If you've used Eclipse or Visual Studio then you'll be right at home.
We added some interesting features specifically for debugging parallel code (be it MPI, multi-threaded or CUDA):
It's widely used amongst top500 HPC sites, such as ORNL, NCSA, LLNL, Jülich et. al.
The interface is pretty snappy; we timed stepping and merging the stacks and variables of 220,000 processes at 0.1s as part of the acceptance testing on Oak Ridge's Jaguar cluster.
@tgamblin mentioned the excellent STAT, which integrates with Allinea DDT, as do several other popular open source projects.