MPI_Isend(3)               (7/12/1994)               MPI_Isend(3)



     NAME
          MPI_Isend - Begins a nonblocking send


     INPUT PARAMETERS
          buf  - initial address of send buffer (choice)
          count
               - number of elements in send buffer (integer)
          datatype
               - datatype of each send buffer element (handle)
          dest - rank of destination (integer)
          tag  - message tag (integer)
          comm - communicator (handle)


     OUTPUT PARAMETER
          request
               - communication request (handle)

     SYNOPSIS
          #include "mpi.h"
          int MPI_Isend( buf, count, datatype, dest, tag, comm, request )
          void             *buf;
          int              count;
          MPI_Datatype     datatype;
          int              dest;
          int              tag;
          MPI_Comm         comm;
          MPI_Request      *request;



     LOCATION
           isend.c





















     Page 1                                           (printed 3/8/95)