Skip to content
Snippets Groups Projects
Commit 3c5bedac authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

MPI_reduce -> MPI_Reduce in test.c

Former-commit-id: 0df8cff51669ec74e18a7c33091db203a445780b
parent 7fcb6541
Branches
Tags
1 merge request!42Added a line of output dumping the number of particles in the ICs
......@@ -729,7 +729,7 @@ int main(int argc, char *argv[]) {
#if defined(WITH_MPI)
long long N_long = N;
MPI_reduce(&N_long, &N_total, 1, MPI_LONG_LONG, MPI_SUM, 0, MPI_COMM_WORLD);
MPI_Reduce(&N_long, &N_total, 1, MPI_LONG_LONG, MPI_SUM, 0, MPI_COMM_WORLD);
#else
N_total = N;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment