|
ScaLAPACK
2.0.2
ScaLAPACK: Scalable Linear Algebra PACKage
|
#include "Bdef.h"Go to the source code of this file.
Functions/Subroutines | |
| BLACBUFF * | BI_Pack (BLACSCONTEXT *ctxt, BVOID *A, BLACBUFF *bp, MPI_Datatype Dtype) |
| BLACBUFF* BI_Pack | ( | BLACSCONTEXT * | ctxt, |
| BVOID * | A, | ||
| BLACBUFF * | bp, | ||
| MPI_Datatype | Dtype | ||
| ) |
Definition at line 2 of file BI_Pack.c.
{
BLACBUFF *BI_GetBuff(int);
int i, info, one=1;
MPI_Aint eltsiz;
#ifdef ZeroByteTypeBug
char *cptr;
extern BLACBUFF BI_AuxBuff;
extern int BI_Np;
#endif
/*
* Some versions of mpich and its derivitives cannot handle 0 byte typedefs,
* so we have set MPI_BYTE as a flag for a 0 byte message
*/
#ifdef ZeroByteTypeBug
if (Dtype == MPI_BYTE)
{
info = sizeof(BLACBUFF);
if (info % sizeof(MPI_Request))
info += sizeof(MPI_Request) - info % sizeof(MPI_Request);
i = info + BI_Np*sizeof(MPI_Request);
if (i % BUFFALIGN) i += BUFFALIGN - i % BUFFALIGN;
cptr = malloc(i);
if (cptr)
{
bp = (BLACBUFF *) cptr;
bp->Len = bp->N = bp->nAops = 0;
bp->Aops = (MPI_Request *) &cptr[info];
bp->Buff = (char *) &bp->Len;
bp->dtype = MPI_BYTE;
return(bp);
}
else BI_BlacsErr(BI_ContxtNum(ctxt), __LINE__, __FILE__,
"Not enough memory to allocate 0 byte buffer\n");
}
#endif
if (bp == NULL)
{
info=MPI_Pack_size(one, Dtype, ctxt->scp->comm, &i);
bp = BI_GetBuff(i);
}
i = 0;
info=MPI_Pack(A, one, Dtype, bp->Buff, bp->Len, &i, ctxt->scp->comm);
bp->dtype = MPI_PACKED;
bp->N = i;
return(bp);
}