Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an MPI program which compiles and runs, but I would like to step through it to make sure nothing bizarre is happening. Ideally, I would like a simple way to attach GDB to any particular process, but I'm not really sure whether that's possible or how to do it. An alternative would be having each process write debug output to a separate log file, but this doesn't really give the same freedom as a debugger.

Are there better approaches? How do you debug MPI programs?

share|improve this question

11 Answers

up vote 23 down vote accepted

As someone else said, TotalView is the standard for this. But it will cost you an arm and a leg.

The OpenMPI site has a great FAQ on MPI debugging. Item #6 in the FAQ describes how to attach GDB to MPI processes. Read the whole thing, there are some great tips.

If you find that you have far too many processes to keep track of, though, check out Stack Trace Analysis Tool (STAT). We use this at Livermore to collect stack traces from potentially hundreds of thousands of running processes and to represent them intelligently to users. It's not a full-featured debugger (a full-featured debugger would never scale to 208k cores), but it will tell you which groups of processes are doing the same thing. You can then step through a representative from each group in a standard debugger.

share|improve this answer
3  
As of 2010 Allinea DDT is a full-featured debugger that scales to over 208k cores – Mark May 31 '12 at 12:00
So I'll go ahead and upvote @Mark's answer here. DDT is nice. Try it out too. TotalView also integrates with STAT now, so if your site has a TotalView installation you could try that as well. LLNL keeps TotalView and DDT around, and it's nice that TotalView finally has some stiff competition. – tgamblin Jun 7 '12 at 0:13
I'd like to second the link to FAQ on MPI debugging (open-mpi.org/faq/?category=debugging#serial-debuggers). Specifically, bullet 6 is a good, quick, and easy (enough for even me!) to understand way to at least debug an individual process. – Jeff Aug 19 '12 at 18:30

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):

  • Scalar variables are automatically compared across all processes: Sparklines showing values across processes

  • You can also trace and filter the values of variables and expressions over processes and time: Tracepoints log values over time

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.

share|improve this answer

http://valgrind.org/ nuf said


More specific link: Debugging MPI Parallel Programs with Valgrind

share|improve this answer
2  
Valgrind is not the same as an interactive debugger, but it is nice to know it works with MPI. – Jay Conrod Mar 9 '10 at 15:55

I have found gdb quite useful. I use it as

mpirun -np <NP> xterm -e gdb ./program 

This the launches xterm windows in which I can do

run <arg1> <arg2> ... <argN>

usually works fine

[edited]

share|improve this answer

The "standard" way to debug MPI programs is by using a debugger which supports that execution model.

On UNIX, TotalView is said to have good suppoort for MPI.

share|improve this answer

http://github.com/jimktrains/pgdb/tree/master is a utility I wrote to do this very thing. There are some docs and feel free to pm me for questions.

You basically call a perl program that wraps GDB and funnels it's IO to a central server. This allows GDB to be running on each host and for you to access it on each host at the terminal.

share|improve this answer
Thanks! I will definitely check this out next time I'm working in MPI. – Jay Conrod Apr 9 '09 at 3:45

The command to attach gdb to an mpi process is incomplete, it should be

mpirun -np <NP> xterm -e gdb ./program 

Apparently, three letters is too short an edit.

A brief discussion of mpi and gdb can be found here

share|improve this answer

I use this little homebrewn method to attach debugger to MPI processes - call the following function, DebugWait(), right after MPI_Init() in your code. Now while the processes are waiting for keyboard input, you have all the time to attach the debugger to them and add breakpoints. When you are done, provide a single character input and you are ready to go.

static void DebugWait(int rank) {
    char	a;

    if(rank == 0) {
    	scanf("%c", &a);
    	printf("%d: Starting now\n", rank);
    } 

    MPI_Bcast(&a, 1, MPI_BYTE, 0, MPI_COMM_WORLD);
    printf("%d: Starting now\n", rank);
}

Of course you would want to compile this function for debug builds only.

share|improve this answer
MPI has required the most debug statements I have ever written for even simple code. (lol) This can be very helpful. – Troggy Jul 2 '09 at 16:38
This solution is similar to bullet 6 here (open-mpi.org/faq/?category=debugging#serial-debuggers). You can improve your code a little by adding gethostname(hostname, sizeof(hostname)); printf("PID %d on host %s ready for attach\n", getpid(), hostname);. Then, you attach to the process by typing rsh <hostname_from_print_statement>, and finally gdb --pid=<PID_from_print_statement>. – Jeff Aug 19 '12 at 18:35

I do some MPI-related debugging with log traces, but you can also run gdb if you're using mpich2: MPICH2 and gdb

share|improve this answer

There is also my open-source tool, padb, which aims to help with parallel programming. I call it a "Job Inspection Tool" as it functions not only as a debugger can also function for example as a parallel top like program. Run in "Full Report" mode it'll show you stack traces of every process within your application along with local variables for every function over every rank (assuming you compiled with -g). It'll also show you the "MPI message queues", that is the list of outstanding sends and receives for each rank within the job.

As well as showing the full report it's also possible to tell padb to zoom in on individual bits of information within the job, there are a myriad of options and configuration items to control what information is shown, see the web page for more details.

Padb

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.