コード例 #1
0
ファイル: MarginalSISHandler.hpp プロジェクト: sbfnk/LibBi
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));
}
コード例 #2
0
ファイル: two_methods.cpp プロジェクト: mcopik/salsa_examples
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);
}