ScaLAPACK  2.0.2
ScaLAPACK: Scalable Linear Algebra PACKage
BI_Ssend.c
Go to the documentation of this file.
00001 #include "Bdef.h"
00002 
00003 void BI_Ssend(BLACSCONTEXT *ctxt, int dest, int msgid, BLACBUFF *bp)
00004 {
00005    int info;
00006    info=MPI_Send(bp->Buff, bp->N, bp->dtype, dest, msgid, ctxt->scp->comm);
00007 }