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?

link|improve this question

80% accept rate
They are passed by reference to allow an MPI implementation to provide them in environments where the command-line arguments are not provided to main. mpi-forum.org/docs/mpi-11-html/node151.html can someone shed more light on this with an example? – iamrohitbanga Apr 15 '10 at 8:07
feedback

3 Answers

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.

link|improve this answer
why would they do that? what if i examine the arguments before calling MPI_Init – iamrohitbanga Apr 16 '10 at 6:18
1  
To parse MPI specific arguments. I don't have example for MPI, but GTK GUI toolkit has almost identical gtk_init function, that filters out some common X commandline options, such as --display and --screen. – el.pescado Jul 7 '10 at 20:37
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

mpirun -np 10 myapp myparam1 myparam2

argc = 7(?) because of the mpirun parameters (it also seems to add some) and the indices of myparam1 and myparam2 are unknown

but after

MPI_Init(&argc, &argv)

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.

link|improve this answer
feedback

It is less overhead to just pass two pointers.

link|improve this answer
actually i meant invoke the function as MPI_Init(argc, argv); – iamrohitbanga Apr 27 '10 at 16:17
that is also less overhead. – iamrohitbanga Apr 27 '10 at 16:17
Well, many times in practice the MPI code is the whole executable so it would make sense to pass all the command line arguments. Remember though, argc and argv are just local variable names. Inside your code before you call MPI_Init() you can pass it whatever you want. – Chad Brewbaker Jun 14 '10 at 7:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.