I have a text file that is available on one computer only and I need the other computers to be able to read that file too.
How can I send a file using mpich2 (c++)?
I tried using MPI_File_open() but it seems that all the computers need that file locally to work.
so i end up read the file a broadcast it to the rest of the of the proccesses as a char array.
thanks @haraldkl