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