mirror of
https://github.com/boostorg/mpi.git
synced 2026-02-25 16:32:22 +00:00
Remove some leftover debug output
[SVN r48580]
This commit is contained in:
@@ -40,10 +40,7 @@ namespace detail {
|
||||
all_gather_impl(const communicator& comm, const T* in_values, int n,
|
||||
T* out_values, mpl::false_)
|
||||
{
|
||||
std::cerr << comm.rank() << ": gathering " << n << " values to root 0..." << std::endl;
|
||||
std::cerr << in_values << ", " << out_values << std::endl;
|
||||
gather(comm, in_values, n, out_values, 0);
|
||||
std::cerr << comm.rank() << ": broadcasting from root 0..." << std::endl;
|
||||
broadcast(comm, out_values, comm.size() * n, 0);
|
||||
}
|
||||
} // end namespace detail
|
||||
|
||||
@@ -105,8 +105,6 @@ private:
|
||||
|
||||
void load_impl(void * p, int l)
|
||||
{
|
||||
if (position+l > static_cast<int>(buffer_.size()))
|
||||
std::cerr << position << " " << l << " " << buffer_.size() << "\n";
|
||||
assert(position+l<=static_cast<int>(buffer_.size()));
|
||||
std::memcpy(p,&buffer_[position],l);
|
||||
position += l;
|
||||
|
||||
Reference in New Issue
Block a user