Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55504 - in branches/release/boost/mpi: collectives detail
From: troyer_at_[hidden]
Date: 2009-08-10 12:47:37


Author: troyer
Date: 2009-08-10 12:47:36 EDT (Mon, 10 Aug 2009)
New Revision: 55504
URL: http://svn.boost.org/trac/boost/changeset/55504

Log:
Moved last unmerged changes for MPI in Boost 1.40
Text files modified:
   branches/release/boost/mpi/collectives/all_reduce.hpp | 2 +-
   branches/release/boost/mpi/collectives/reduce.hpp | 4 ++--
   branches/release/boost/mpi/collectives/scan.hpp | 2 +-
   branches/release/boost/mpi/detail/mpi_datatype_cache.hpp | 2 +-
   4 files changed, 5 insertions(+), 5 deletions(-)

Modified: branches/release/boost/mpi/collectives/all_reduce.hpp
==============================================================================
--- branches/release/boost/mpi/collectives/all_reduce.hpp (original)
+++ branches/release/boost/mpi/collectives/all_reduce.hpp 2009-08-10 12:47:36 EDT (Mon, 10 Aug 2009)
@@ -33,7 +33,7 @@
     BOOST_MPI_CHECK_RESULT(MPI_Allreduce,
                            (const_cast<T*>(in_values), out_values, n,
                             boost::mpi::get_mpi_datatype<T>(*in_values),
- is_mpi_op<Op, T>::op(), comm));
+ (is_mpi_op<Op, T>::op()), comm));
   }
 
   /**********************************************************************

Modified: branches/release/boost/mpi/collectives/reduce.hpp
==============================================================================
--- branches/release/boost/mpi/collectives/reduce.hpp (original)
+++ branches/release/boost/mpi/collectives/reduce.hpp 2009-08-10 12:47:36 EDT (Mon, 10 Aug 2009)
@@ -52,7 +52,7 @@
     BOOST_MPI_CHECK_RESULT(MPI_Reduce,
                            (const_cast<T*>(in_values), out_values, n,
                             boost::mpi::get_mpi_datatype<T>(*in_values),
- is_mpi_op<Op, T>::op(), root, comm));
+ (is_mpi_op<Op, T>::op()), root, comm));
   }
 
   // We are reducing to the root for a type that has an associated MPI
@@ -65,7 +65,7 @@
     BOOST_MPI_CHECK_RESULT(MPI_Reduce,
                            (const_cast<T*>(in_values), 0, n,
                             boost::mpi::get_mpi_datatype<T>(*in_values),
- is_mpi_op<Op, T>::op(), root, comm));
+ (is_mpi_op<Op, T>::op()), root, comm));
   }
 
   /**********************************************************************

Modified: branches/release/boost/mpi/collectives/scan.hpp
==============================================================================
--- branches/release/boost/mpi/collectives/scan.hpp (original)
+++ branches/release/boost/mpi/collectives/scan.hpp 2009-08-10 12:47:36 EDT (Mon, 10 Aug 2009)
@@ -52,7 +52,7 @@
     BOOST_MPI_CHECK_RESULT(MPI_Scan,
                            (const_cast<T*>(in_values), out_values, n,
                             boost::mpi::get_mpi_datatype<T>(*in_values),
- is_mpi_op<Op, T>::op(), comm));
+ (is_mpi_op<Op, T>::op()), comm));
   }
 
   /**********************************************************************

Modified: branches/release/boost/mpi/detail/mpi_datatype_cache.hpp
==============================================================================
--- branches/release/boost/mpi/detail/mpi_datatype_cache.hpp (original)
+++ branches/release/boost/mpi/detail/mpi_datatype_cache.hpp 2009-08-10 12:47:36 EDT (Mon, 10 Aug 2009)
@@ -88,7 +88,7 @@
 };
 
 /// Retrieve the MPI datatype cache
-mpi_datatype_map& mpi_datatype_cache();
+BOOST_MPI_DECL mpi_datatype_map& mpi_datatype_cache();
 
 } } } // end namespace boost::mpi::detail
 


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