ScaLAPACK  2.0.2
ScaLAPACK: Scalable Linear Algebra PACKage
BI_cMPI_sum.c
Go to the documentation of this file.
00001 #include "Bdef.h"
00002 void BI_cMPI_sum(void *in, void *inout, int *N, MPI_Datatype *dtype)
00003 {
00004    void BI_cvvsum(int, char *, char *);
00005    BI_cvvsum(*N, inout, in);
00006 }