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

Is there a non-commerical/free available Linux tool for debugging of MPI parallelized C++ code? Something like Allinea DDT or TotalView? I know the tricks how to make use of gdb to attach to parallel running codes. But I find them tedious just to make some fast debugging. So is there any GUI based tool (maybe based on gdb) that directly supports for parallel debugging?

share|improve this question
2  
If your development machine has the specs of a small supercomputer so that it can run Eclipse, then you can try the Eclipse Parallel Tools Platform. – Hristo Iliev Aug 20 '12 at 10:42
Seems to be worth to give it a try ... – Thomas Witkowski Aug 20 '12 at 10:57

1 Answer

Depending of the MPI implementation that you are using, you can run mpirun --gdb.

Check this link for more details.

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.