Using Vampir to Show Load Imbalance
First we select a display of MPI events only. No surprise that
MPI_Bcast is the dominant activity in two of the three nodes; there
is load imbalance going on here.
This is seen more clearly in the corresponding bar chart:
Node 0 is doing most of the MPI_Recv while nodes 1 and 2 are doing
most of the MPI_Bcast.
Possible causes:
- We are printing distributed data (node 0 prints by default)
- There is load-imbalance (VT shows this to be the case)
(Back to main talk)