views:

54

answers:

2

Hello All,

I'm new in MPI programming world and i'm wondering if there is some variables shared between MPI processees and accessible from any process without having to send/receive them ?

Thanks

+2  A: 

No. There are no "user space" variables or buffers that are automatically shared between ranks of an MPI job.

There are some common variables (e.g. total number of ranks) that are setup by the MPI environment and are guaranteed to be "the same" across all the ranks - but are not "shared" (e.g. there is a local read-only copy of the values across all the ranks). In many cases, the values are accessed through MPI_* calls, and may also be available other ways depending on the specifics of the implementation.

semiuseless
+1  A: 

Nope. Many times your MPI code will be running on many computers at once, so there is no way for them to share data other than to transfer a message over the network.

For multicore machines most MPI implementations detect if the processes are running on the same chip and use an optimized message passing algorithm that avoids any communication on the network, and in some cases reuses buffers to avoid intermediate memory copies.

Chad Brewbaker