How to strace all processes of mpi parallel job, started with mpiexec (mpich2, linux)?

-o will mess outputs from different processes

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Create a wrapper around your program, which will be launched by mpiexec. Something like:

#!/bin/sh
LOGFILE="strace-$(hostname).$$"
exec strace -o"$LOGFILE" my_mpi_program
link|improve this answer
I work on SMP, so hostname wil be the same ^( – osgx Jul 4 '10 at 6:17
1  
It's ok, file names still will be different due to $$ part -- it is the PID of the current process. – Roman Cheplyaka Jul 4 '10 at 8:12
feedback

You may want to try STAT (Stack Trace Analysis Tool). Check out the STAT Homepage. It will give you a high level overview of your process behavior, and works especially well in the case of a hung process.

link|improve this answer
sorry. this project is interesting, but i can't run it on target platform (StackWalker API is not ported, but strace is). – osgx Jun 8 '10 at 9:01
1  
What platform is it? Try using gcc 4.1.2, we've had problems compiling with newer versions (StackWalker specifically). – Jharrod LaFon Jun 8 '10 at 15:53
feedback

Your Answer

 
or
required, but never shown

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