MPI Datatype Examples
For all of these, assume
real R(50,50)
Columns (in Fortran memory order) are easy
call MPI_TYPE_CONTIGUOUS(50,MPI_REAL,& newtype)
Rows are too
call MPI_TYPE_VECTOR(50, 1, 50,& MPI_REAL, newtype)
Previous slide
Next slide
Back to first slide
View graphic version