Ubuntu – MPI_Scatterv from Intel MPI (mpiifort) using MPI data types is much slower (23 times) compared to flattening array and scattering. Why it could be?
ifort version: (IFORT) 2021.8.0 20221119 OS: WSL Ubuntu 20.04LTS I have a (1000x1000x1000) 3D array to distribute among procs. In the first approach, I flatten the array and then distribute arrays among procs and it takes about 7.86sec In the…