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

Prevent users from using the particle logger when running over MPI.

parent f63fb130
No related branches found
No related tags found
1 merge request!685Logger loader
......@@ -542,9 +542,12 @@ int main(int argc, char *argv[]) {
if (with_mpole_reconstruction && nr_nodes > 1)
error("Cannot reconstruct m-poles every step over MPI (yet).");
if (with_limiter) error("Can't run with time-step limiter over MPI (yet)");
#ifdef WITH_LOGGER
error("Can't run with the particle logger over MPI (yet)");
#endif
#endif
/* Temporary early aborts for modes not supported with hand-vec. */
/* Temporary early aborts for modes not supported with hand-vec. */
#if defined(WITH_VECTORIZATION) && defined(GADGET2_SPH) && \
!defined(CHEMISTRY_NONE)
error(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment