repo.or.cz
/
gromacs
/
adressmacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'rotation-4-5' into rotation
[gromacs/adressmacs.git]
/
cmake
/
TestMPI_IN_PLACE.c
blob
58344694b0cccba778e05d4e9434f8b0dd37112c
1
2
#include <mpi.h>
3
4
int
main
(
void
)
5
{
6
void
*
buf
;
7
MPI_Allreduce
(
MPI_IN_PLACE
,
buf
,
10
,
MPI_FLOAT
,
MPI_SUM
,
MPI_COMM_WORLD
);
8
}
9
10