Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
4cb768a5
Commit
4cb768a5
authored
Sep 13, 2019
by
Matthieu Schaller
Browse files
Prevent users from using the particle logger when running over MPI.
parent
f63fb130
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/main.c
View file @
4cb768a5
...
...
@@ -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
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment