$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [mpi] broadcast performance
From: Júlio Hoffimann (julio.hoffimann_at_[hidden])
Date: 2012-09-05 22:00:53
Hi Brian,
If i understood correctly, you're actually doing something like:
std::vector<char> gigaVec;
MPI_Bcast(blah, blah, ..., &gigaVec[0])
and want to replace that by boost::mpi::broadcast, is that correct?
Just do it the same way, if the type of the container is a MPI type, you're
guaranteed that the underlying MPI implementation will be called.
Regards,
Júlio.