Example MPI_SEND in Fortran
integer count, datatype, dest, tag, comm, mpierr
real sndbuf(50)
comm = MPI_COMM_WORLD
tag = 0
count = 50
datatype = MPI_REAL
call MPI_SEND (sndbuf, count, datatype, dest, tag, comm, mpierr)
Previous slide
Next slide
Back to first slide
View graphic version