Skip to content

Fix communication for large message sizes

Created by: masterleinad

For

mpiexec -np 10 ./ArborX_DistributedTree.exe --values=100000000 --queries=10000000 --neighbors=40

I was getting an MPI error telling me that the message size was too large. This pull requests splits the message into multiple smaller ones in case we need to send more than std::numeric_limits<int>::max() bytes.

Merge request reports