Skip to content

Fix MPI deadlock in the symmetrizer

Sebastian Ohlmann requested to merge fix_deadlock_symmetrizer into develop

Description

The exit condition depended on local data - if the complete local field is 0 on one rank, it will exit the function early, while the other processes still wait for gathering the data.

Now, do the zero check on the full array to do exactly the same on all ranks.

Checklist

Merge request reports