HP-MPI V2.3 for Linux Release Note

int MPI_SendrecvL(void *sendbuf, MPI_Aint sendcount, MPI_Datatype sendtype,
int dest, int sendtag, void *recvbuf, MPI_Aint recvcount, MPI_Datatype recvtype,
int source, int recvtag, MPI_Comm comm, MPI_Status *status)
IN sendbuf initial address of send buffer (choice)
IN sendcount number of elements in send buffer
IN sendtype type of elements in send buffer (handle)
IN dest rank of destination
IN sendtag send tag
OUT recvbuf initial address of receive buffer (choice)
IN recvcount number of elements in receive buffer
IN recvtype type of elements in receive buffer (handle)
IN source rank of source
IN recvtag receive tag
IN comm communicator (handle)
OUT status status object (status)
int MPI_Sendrecv_replaceL(void* buf, MPI_Aint count, MPI_Datatype datatype,
int dest, int sendtag, int source, int recvtag, MPI_Comm comm, MPI_Status *status)
INOUT buf initial address of send and receive buffer (choice)
IN count number of elements in send and receive buffer
IN datatype type of elements in send and receive buffer (handle)
IN dest rank of destination
IN sendtag send message tag
IN source rank of source
IN recvtag receive message tag
IN comm communicator (handle)
OUT status status object (status)
int MPI_SsendL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest, int
tag, MPI_Comm comm)
IN buf initial address of send buffer (choice)
IN count number of elements in send buffer
IN datatype datatype of each send buffer element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
int MPI_Ssend_initL(void* buf, MPI_Aint count, MPI_Datatype datatype, int dest,
int tag, MPI_Comm comm, MPI_Request *request)
IN buf initial address of send buffer (choice)
IN count number of elements sent
IN datatype type of each element (handle)
IN dest rank of destination
IN tag message tag
IN comm communicator (handle)
OUT request communication request (handle)
42 HP-MPI Large Message APIs