How can I do an overlapping scatter using Boost.MPI?
Posted
by Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2010-03-25T04:06:35Z
Indexed on
2010/03/25
4:13 UTC
Read the original article
Hit count: 339
I want to distribute a vector with overlapping elements. For example, if I had [1,2,3], I'd want [1,2] to get sent to one node, and [2,3] to get sent to another. I'm familiar with how to do this using MPI, but how would I do this using Boost::MPI?
© Stack Overflow or respective owner