ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/parallel/Communicator.hpp
Revision: 1551
Committed: Thu Apr 28 18:38:21 2011 UTC (14 years ago) by gezelter
File size: 5790 byte(s)
Log Message:
More changes for parallel

File Contents

# Content
1 /**
2 * @file Communicator.hpp
3 * @author Charles Vardeman <cvardema.at.nd.edu>
4 * @date 08/18/2010
5 * @time 11:56am
6 * @version 1.0
7 *
8 * @section LICENSE
9 * Copyright (c) 2010 The University of Notre Dame. All Rights Reserved.
10 *
11 * The University of Notre Dame grants you ("Licensee") a
12 * non-exclusive, royalty free, license to use, modify and
13 * redistribute this software in source and binary code form, provided
14 * that the following conditions are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 *
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the
22 * distribution.
23 *
24 * This software is provided "AS IS," without a warranty of any
25 * kind. All express or implied conditions, representations and
26 * warranties, including any implied warranty of merchantability,
27 * fitness for a particular purpose or non-infringement, are hereby
28 * excluded. The University of Notre Dame and its licensors shall not
29 * be liable for any damages suffered by licensee as a result of
30 * using, modifying or distributing the software or its
31 * derivatives. In no event will the University of Notre Dame or its
32 * licensors be liable for any lost revenue, profit or data, or for
33 * direct, indirect, special, consequential, incidental or punitive
34 * damages, however caused and regardless of the theory of liability,
35 * arising out of the use of or inability to use software, even if the
36 * University of Notre Dame has been advised of the possibility of
37 * such damages.
38 *
39 * SUPPORT OPEN SCIENCE! If you use OpenMD or its source code in your
40 * research, please cite the appropriate papers when you publish your
41 * work. Good starting points are:
42 *
43 * [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005).
44 * [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006).
45 * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008).
46 * [4] Vardeman & Gezelter, in progress (2009).
47 */
48
49 #ifndef PARALLEL_COMMUNICATOR_HPP
50 #define PARALLEL_COMMUNICATOR_HPP
51
52 #include <config.h>
53 #include <mpi.h>
54 #include "math/SquareMatrix3.hpp"
55
56 using namespace std;
57 namespace OpenMD{
58
59 #ifdef IS_MPI
60
61 enum communicatorType {
62 Global = 0,
63 Row = 1,
64 Column = 2
65 };
66
67 template<class T>
68 class MPITraits {
69 public:
70 static MPI::Datatype Type();
71 static int Length() { return 1; };
72 };
73
74 template<> inline MPI::Datatype MPITraits<int>::Type() { return MPI_INT; }
75 template<> inline MPI::Datatype MPITraits<RealType>::Type() { return MPI_REALTYPE; }
76
77 template<class T, unsigned int Dim>
78 class MPITraits< Vector<T, Dim> > {
79 public:
80 static MPI::Datatype Type() { return MPITraits<T>::Type(); }
81 static int Length() {return Dim;}
82 };
83
84 template<class T>
85 class MPITraits< Vector3<T> > {
86 public:
87 static MPI::Datatype Type() { return MPITraits<T>::Type(); }
88 static int Length() {return 3;}
89 };
90
91 template<class T, unsigned int Row, unsigned int Col>
92 class MPITraits< RectMatrix<T, Row, Col> > {
93 public:
94 static MPI::Datatype Type() { return MPITraits<T>::Type(); }
95 static int Length() {return Row * Col;}
96 };
97
98 template<class T>
99 class MPITraits< SquareMatrix3<T> > {
100 public:
101 static MPI::Datatype Type() { return MPITraits<T>::Type(); }
102 static int Length() {return 9;}
103 };
104
105
106 template<communicatorType D, typename T>
107 class Communicator {
108 public:
109
110 Communicator<D, T>(int nObjects) {
111
112 int nProc = MPI::COMM_WORLD.Get_size();
113 int myRank = MPI::COMM_WORLD.Get_rank();
114
115 int nColumnsMax = (int) sqrt(RealType(nProc));
116
117 int nColumns;
118 for (int i = 1; i < nColumnsMax + 1; i++) {
119 if (nProc % i == 0) nColumns = i;
120 }
121
122 int nRows = nProc / nColumns;
123 rowIndex_ = myRank / nColumns;
124 columnIndex_ = myRank % nColumns;
125
126 switch(D) {
127 case Row :
128 myComm = MPI::COMM_WORLD.Split(rowIndex_, 0);
129 break;
130 case Column:
131 myComm = MPI::COMM_WORLD.Split(columnIndex_, 0);
132 break;
133 case Global:
134 myComm = MPI::COMM_WORLD.Split(myRank, 0);
135 }
136
137 int nCommProcs = myComm.Get_size();
138
139 counts.reserve(nCommProcs);
140 displacements.reserve(nCommProcs);
141
142 planSize_ = MPITraits<T>::Length() * nObjects;
143
144 myComm.Allgather(&planSize_, 1, MPI::INT, &counts[0], 1, MPI::INT);
145
146 displacements[0] = 0;
147 for (int i = 1; i < nCommProcs; i++) {
148 displacements[i] = displacements[i-1] + counts[i-1];
149 size_ += counts[i-1];
150 }
151
152 size_ = 0;
153 for (int i = 0; i < nCommProcs; i++) {
154 size_ += counts[i];
155 }
156 }
157
158
159 void gather(vector<T>& v1, vector<T>& v2) {
160
161 myComm.Allgatherv(&v1[0],
162 planSize_,
163 MPITraits<T>::Type(),
164 &v2[0],
165 &counts[0],
166 &displacements[0],
167 MPITraits<T>::Type());
168 }
169
170
171
172 void scatter(vector<T>& v1, vector<T>& v2) {
173
174 myComm.Reduce_scatter(&v1[0], &v2[0], &counts[0],
175 MPITraits<T>::Type(), MPI::SUM);
176 }
177
178 int getSize() {
179 return size_;
180 }
181
182 private:
183 int planSize_; ///< how many are on local proc
184 int rowIndex_;
185 int columnIndex_;
186 int size_;
187 vector<int> counts;
188 vector<int> displacements;
189 MPI::Intracomm myComm;
190 };
191
192 #endif
193 }
194 #endif
195
196

Properties

Name Value
svn:eol-style native