File: debug-tools.rst

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (19 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Parallel Debugging Tools
========================

There are two main categories of tools that can aid in
parallel debugging:

* **Debuggers:** Both serial and parallel debuggers are useful.  Serial
  debuggers are what most programmers are used to (e.g.,
  the GNU debugger, ``gdb``), while
  parallel debuggers can attach to all the individual processes in an
  MPI job simultaneously, treating the MPI application as a single
  entity.  This can be an extremely powerful abstraction, allowing the
  user to control every aspect of the MPI job, manually replicate race
  conditions, etc.

* **Profilers:** Tools that analyze your usage of MPI and display
  statistics and meta information about your application's run.  Some
  tools present the information "live" (as it occurs), while others
  collect the information and display it in a post mortem analysis.