Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r48581 - in branches/release/boost/mpi: collectives detail
From: dgregor_at_[hidden]
Date: 2008-09-04 15:42:31


Author: dgregor
Date: 2008-09-04 15:42:31 EDT (Thu, 04 Sep 2008)
New Revision: 48581
URL: http://svn.boost.org/trac/boost/changeset/48581

Log:
Remove some leftover debug output
Text files modified:
   branches/release/boost/mpi/collectives/all_gather.hpp | 3 ---
   branches/release/boost/mpi/detail/binary_buffer_iprimitive.hpp | 2 --
   2 files changed, 0 insertions(+), 5 deletions(-)

Modified: branches/release/boost/mpi/collectives/all_gather.hpp
==============================================================================
--- branches/release/boost/mpi/collectives/all_gather.hpp (original)
+++ branches/release/boost/mpi/collectives/all_gather.hpp 2008-09-04 15:42:31 EDT (Thu, 04 Sep 2008)
@@ -40,10 +40,7 @@
   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

Modified: branches/release/boost/mpi/detail/binary_buffer_iprimitive.hpp
==============================================================================
--- branches/release/boost/mpi/detail/binary_buffer_iprimitive.hpp (original)
+++ branches/release/boost/mpi/detail/binary_buffer_iprimitive.hpp 2008-09-04 15:42:31 EDT (Thu, 04 Sep 2008)
@@ -105,8 +105,6 @@
 
     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;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk