MPI_Ssend_init
--- Builds a handle for a synchronous send
Input Parameters
- buf
- initial address of send buffer (choice)
- count
- number of elements sent (integer)
- datatype
- type of each 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_Ssend_init( 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: ssend_init.c