2
0
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:
Douglas Gregor
2008-09-04 19:38:19 +00:00
parent 31885ba318
commit 50d308c6ad
2 changed files with 0 additions and 5 deletions

View File

@@ -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

View File

@@ -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;