|
Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Teuchos: Common Tools Package 00005 // Copyright (2004) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // Redistribution and use in source and binary forms, with or without 00011 // modification, are permitted provided that the following conditions are 00012 // met: 00013 // 00014 // 1. Redistributions of source code must retain the above copyright 00015 // notice, this list of conditions and the following disclaimer. 00016 // 00017 // 2. Redistributions in binary form must reproduce the above copyright 00018 // notice, this list of conditions and the following disclaimer in the 00019 // documentation and/or other materials provided with the distribution. 00020 // 00021 // 3. Neither the name of the Corporation nor the names of the 00022 // contributors may be used to endorse or promote products derived from 00023 // this software without specific prior written permission. 00024 // 00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00036 // 00037 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00038 // 00039 // *********************************************************************** 00040 // @HEADER 00041 00042 #include "Teuchos_ConfigDefs.hpp" 00043 #include "Teuchos_DefaultComm.hpp" 00044 #include "Teuchos_CommHelpers.hpp" 00045 #include "Teuchos_GlobalMPISession.hpp" 00046 00047 int main(int argc, char* argv[]) { 00048 00049 using Teuchos::RCP; 00050 00051 Teuchos::GlobalMPISession mpiSession(&argc, &argv); 00052 00053 int ierr = 0; 00054 00055 RCP<const Teuchos::Comm<int> > 00056 comm = Teuchos::DefaultComm<int>::getComm(); 00057 00058 const int size = Teuchos::size(*comm); 00059 const int rank = Teuchos::rank(*comm); 00060 00061 if (rank == 0) { 00062 std::cout 00063 << "Rank: " << rank 00064 << "\t\tSize: " << size << std::endl; 00065 } 00066 00067 const int one = Teuchos::OrdinalTraits<int>::one(); 00068 00069 std::vector<int> sendbuf(size,one); 00070 std::vector<int> recvcounts(size,one); 00071 00072 // Try straight MPI version 00073 #ifdef HAVE_MPI 00074 { 00075 std::vector<int> sbuf(sendbuf); 00076 std::vector<int> rcnt(recvcounts); 00077 int rbuf; 00078 00079 MPI_Comm mpi_comm = MPI_COMM_WORLD; 00080 MPI_Reduce_scatter(&sbuf[0],&rbuf,&rcnt[0],MPI_INT,MPI_SUM,mpi_comm); 00081 00082 // should be size 00083 if (rank == 0) { 00084 std::cout << "Received from direct MPI call: " << rbuf << std::endl; 00085 } 00086 ierr += (rbuf == size ? 0 : 1); 00087 } 00088 #endif 00089 00090 // Try straight MPI version with user-defined type 00091 #ifdef HAVE_MPI 00092 { 00093 std::vector<int> sbuf(sendbuf); 00094 std::vector<int> rcnt(recvcounts); 00095 int rbuf; 00096 00097 MPI_Comm mpi_comm = MPI_COMM_WORLD; 00098 MPI_Datatype _chars_type; 00099 MPI_Type_contiguous(sizeof(int), MPI_CHAR, &_chars_type); 00100 MPI_Reduce_scatter(&sbuf[0], &rbuf, &rcnt[0], _chars_type, MPI_SUM, mpi_comm); 00101 00102 // should be size 00103 if (rank == 0) { 00104 std::cout << "Received from direct MPI call with user type: " << rbuf << std::endl; 00105 } 00106 ierr += (rbuf == size ? 0 : 1); 00107 } 00108 #endif 00109 00110 // Try Teuchos version 00111 { 00112 std::vector<int> sbuf(sendbuf); 00113 std::vector<int> rcnt(recvcounts); 00114 int rbuf; 00115 00116 Teuchos::reduceAllAndScatter<int>(*comm,Teuchos::REDUCE_SUM,(int)sbuf.size(),&sbuf[0],&rcnt[0],&rbuf); 00117 00118 // should be size 00119 if (rank == 0) { 00120 std::cout << "Received from MPI-via-Teuchos call: " << rbuf << std::endl; 00121 } 00122 ierr += (rbuf == size ? 0 : 1); 00123 } 00124 00125 if (rank == 0) { 00126 if (ierr) { 00127 std::cerr << "Test FAILED." << std::endl; 00128 } 00129 else { 00130 std::cerr << "Test passed." << std::endl; 00131 } 00132 } 00133 return ierr; 00134 }
1.7.6.1