MPI functions take int as an argument for number of elements, which overflows around 2 GB buffer size.
There may be two solutions:
- Using newer MPI data types for 8-byte indexing.
- Dividing messages into smaller ones. Largest message size can be chosen as 1 GB.
MPI functions take
intas an argument for number of elements, which overflows around 2 GB buffer size.There may be two solutions: