14 lines
287 B
C
14 lines
287 B
C
/*
|
|
* binom_reduce.h
|
|
*
|
|
* Created on: 18 Jun 2016
|
|
* Author: johannes
|
|
*/
|
|
|
|
#ifndef BINOM_REDUCE_H_
|
|
#define BINOM_REDUCE_H_
|
|
|
|
int Binom_Reduce(const void *sendbuf, void *recvbuf, int count,
|
|
MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm);
|
|
|
|
#endif /* BINOM_REDUCE_H_ */
|