Merge pull request #1318 from paulromano/real8-bugfix

Get rid of MPI_REAL8 in state_point.cpp
This commit is contained in:
Andrew Johnson 2019-08-23 08:36:51 -05:00 committed by GitHub
commit 49ffda2ee6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -742,7 +742,7 @@ void write_tally_results_nr(hid_t file_id)
} else {
// Receive buffer not significant at other processors
#ifdef OPENMC_MPI
MPI_Reduce(values.data(), nullptr, values.size(), MPI_REAL8, MPI_SUM,
MPI_Reduce(values.data(), nullptr, values.size(), MPI_DOUBLE, MPI_SUM,
0, mpi::intracomm);
#endif
}