Is MPI_Gather compulsory after MPI_Scatter or can we just scatter and leave data on the nodes.
I scattered a 2D array and counted the evens and odds. the program is working fine without gather. I think since gather only returns the scattered items, it would be fine if I do not gather it in my case.