Example #1
0
void bi::MarginalSISHandler<B,A,S>::init(boost::mpi::communicator child) {
  BOOST_AUTO(q, adapter.get(t));
  node.requests.push_front(child.isend(0, MPI_TAG_ADAPTER_PROPOSAL, q));
}
Example #2
0
mpi::request send_odd(const mpi::communicator & comm, int32_t dst, int32_t tag, int32_t msg)
{
        assert( dst % 2);
        return comm.isend(dst, tag, msg);
}