this is how we use MPI_Init function
int main(int argc, char **argv)
{
MPI_Init(&argc, &argv);
…
}
why does MPI_Init use pointers to argc and argv instead of values of argv?
feedback
|
|
my guess to potentially allow to remove mpi arguments from commandline. passing argument count by pointer allows to modify its value from the point of main. | |||||||
feedback
|
|
According to the answer stated here: Passing arguments via command line with MPI Most MPI implementations will remove all the mpirun-related arguments in this function so that, after calling it, you can address command line arguments as though it were a normal (non-mpirun) command execution. i.e. after
argc = 7(?) because of the mpirun parameters (it also seems to add some) and the indices of myparam1 and myparam2 are unknown but after
argc = 3 and myparam1 is at argv[1] and myparam2 is at argv[2] Apparently this is outside the standard, but I've tested it on linux mpich and it certainly seems to be the case. Without this behaviour it would be very difficult (impossible?) to distinguish application parameters from mpirun parameters. | ||||
|
feedback
|
|
It is less overhead to just pass two pointers. | |||||||
feedback
|