Change MPI_REAL8 -> MPI_DOUBLE in state_point.cpp (Thanks to Cliff Dugal, CNL)

This commit is contained in:
Paul Romano 2019-08-21 08:39:38 -05:00
parent a0bff1194f
commit b767b2adb0

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
}