I need some help with MPI communicators, a subject to which I am relatively new.
I have an MPI code that will be reading input from several input files. Every process will read from at least one file, most will read from more than one. Every file will be read.
I need to create a communicator for each file. Let's say for example that processes 0, 1, and 2 read from file "A.dat", processes 2, 3, and 4 read from file "B.dat", and processes 4, 5, and 6 read from "C.dat". (In practice there will be many more processes and files.) So I need three communicators. The first should contain procs 0, 1, and 2; the second 2, 3, and 4; the third 4, 5, and 6. I'm rather at a loss as to how to do this. Anyone know how?
Its possible to split a larger communicator into smaller communicators of some preferable size:
Or you could create groups (more flexible way)
REFERENCE