ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/InitializeFromFile.cpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/InitializeFromFile.cpp (file contents):
Revision 419 by gezelter, Thu Mar 27 15:07:29 2003 UTC vs.
Revision 436 by chuckv, Fri Mar 28 21:45:03 2003 UTC

# Line 15 | Line 15
15   #include <mpi.h>
16   #include <mpi++.h>
17   #include "mpiSimulation.hpp"
18 < #define TAKE_THIS_TAG 0
18 > #define TAKE_THIS_TAG_CHAR 0
19 > #define TAKE_THIS_TAG_INT 1
20 >
21 > void nodeZeroError( void );
22 > void anonymousNodeDie( void );
23 >
24   #endif // is_mpi
25  
26   InitializeFromFile :: InitializeFromFile( char *in_name ){
# Line 139 | Line 144 | void InitializeFromFile :: read_xyz( SimInfo* the_entr
144    // MPI Section of code..........
145   #else //IS_MPI
146  
147 +  // first thing first, suspend fatalities.
148 +  painCave.isEventLoop = 1;
149 +
150 +  int myStatus; // 1 = wakeup & success; 0 = error; -1 = AllDone
151 +  int haveError;
152 +  
153    MPI::Status istatus;
154    int *AtomToProcMap = mpiSim->getAtomToProcMap();
155  
156 +  
157 +  haveError = 0;
158    if (worldRank == 0) {
159 +
160      eof_test = fgets(read_buffer, sizeof(read_buffer), c_in_file);
161      if( eof_test == NULL ){
162        sprintf( painCave.errMsg,
163                 "Error reading 1st line of %d \n ",c_in_name);
164 <      painCave.isFatal = 1;
164 >      haveError = 1;
165        simError();
166      }
167      
# Line 164 | Line 178 | void InitializeFromFile :: read_xyz( SimInfo* the_entr
178                 "Initialize from File error. %s n_atoms, %d, "
179                 "does not match the BASS file's n_atoms, %d.\n",
180                 c_in_name, n_atoms, entry_plug->n_atoms );
181 <      painCave.isFatal = 1;
181 >      haveError= 1;
182        simError();
183      }
184      
# Line 174 | Line 188 | void InitializeFromFile :: read_xyz( SimInfo* the_entr
188      if(eof_test == NULL){
189        sprintf( painCave.errMsg,
190                 "error in reading commment in %s\n", c_in_name);
191 <      painCave.isFatal = 1;
191 >      haveError= 1;
192        simError();
193      }
194    
195 +    if(haveError) nodeZeroError();
196  
197      for (i=0 ; i < mpiSim->getTotAtoms(); i++) {
198        
# Line 188 | Line 203 | void InitializeFromFile :: read_xyz( SimInfo* the_entr
203                  "natoms  = %d; index = %d\n"
204                  "error reading the line from the file.\n",
205                  c_in_name, n_atoms, i );
206 <        painCave.isFatal = 1;
206 >        haveError= 1;
207          simError();
208        }
209      
210 +      if(haveError) nodeZeroError();
211 +
212        // Get the Node number which wants this atom:
213        which_node = AtomToProcMap[i];    
214 <      if (which_node == mpiSim->getMyNode()) {
214 >      if (which_node == 0) {
215          parseErr = parseDumpLine( read_buffer, i );
216          if( parseErr != NULL ){
217            strcpy( painCave.errMsg, parseErr );
218 <          painCave.isFatal = 1;
218 >          haveError = 1;
219            simError();
220          }    
221 <      } else {
221 >        if(haveError) nodeZeroError();
222 >      }
223 >      
224 >      else {
225 >      
226 >        myStatus = 1;
227 >        MPI::COMM_WORLD.Send(&myStatus, 1, MPI_INT, which_node,
228 >                             TAKE_THIS_TAG_INT);
229          MPI::COMM_WORLD.Send(read_buffer, BUFFERSIZE, MPI_CHAR, which_node,
230 <                             TAKE_THIS_TAG);
231 <        MPI::COMM_WORLD.Send(&i, 1, MPI_INT, which_node, TAKE_THIS_TAG);
230 >                             TAKE_THIS_TAG_CHAR);
231 >        MPI::COMM_WORLD.Send(&i, 1, MPI_INT, which_node, TAKE_THIS_TAG_INT);
232 >        MPI::COMM_WORLD.Recv(&myStatus, 1, MPI_INT, which_node, TAKE_THIS_TAG_INT, istatus);
233 >        
234 >        if(!myStatus) nodeZeroError();
235        }
236      }
237 <    sprintf(read_buffer, "GAMEOVER");
237 >    myStatus = -1;
238      for (j = 0; j < mpiSim->getNumberProcessors(); j++) {      
239 <      MPI::COMM_WORLD.Send(read_buffer, BUFFERSIZE, MPI_CHAR, j,
240 <                           TAKE_THIS_TAG);
239 >      MPI::COMM_WORLD.Send( &myStatus, 1, MPI_INT, j,
240 >                            TAKE_THIS_TAG_INT);
241      }
242      
243    } else {
244      
245      done = 0;
246      while (!done) {
247 +
248 +      MPI::COMM_WORLD.Recv(&myStatus, 1, MPI_INT, 0,
249 +                           TAKE_THIS_TAG_INT, istatus);
250 +      
251 +      if(!myStatus) anonymousNodeDie();
252 +      
253 +      if(myStatus < 0) break;
254 +
255        MPI::COMM_WORLD.Recv(read_buffer, BUFFERSIZE, MPI_CHAR, 0,
256 <                           TAKE_THIS_TAG, istatus);
257 <      if (strcmp(read_buffer, "GAMEOVER")) {
258 <        done = 1;
259 <        continue;
260 <      } else {
261 <        MPI::COMM_WORLD.Recv(&which_atom, 1, MPI_INT, 0,
262 <                             TAKE_THIS_TAG, istatus);
263 <        
264 <        parseErr = parseDumpLine( read_buffer, which_atom );
265 <        if( parseErr != NULL ){
231 <          strcpy( painCave.errMsg, parseErr );
232 <          painCave.isFatal = 1;
233 <          simError();
234 <        }
256 >                           TAKE_THIS_TAG_CHAR, istatus);
257 >      MPI::COMM_WORLD.Recv(&which_atom, 1, MPI_INT, 0,
258 >                           TAKE_THIS_TAG_INT, istatus);
259 >      
260 >      myStatus = 1;
261 >      parseErr = parseDumpLine( read_buffer, which_atom );
262 >      if( parseErr != NULL ){
263 >        strcpy( painCave.errMsg, parseErr );
264 >        myStatus = 0;;
265 >        simError();
266        }
267 +      
268 +      MPI::COMM_WORLD.Send( &myStatus, 1, MPI_INT, 0,
269 +                            TAKE_THIS_TAG_INT);
270 +      
271      }
272    }
273 <        
273 >    
274 > // last  thing last, enable  fatalities.
275 >  painCave.isEventLoop = 0;
276 >  
277   #endif
278   }
279  
# Line 462 | Line 500 | char* InitializeFromFile::parseDumpLine(char* readLine
500  
501    return NULL;
502   }
503 +
504 +
505 + #ifdef IS_MPI
506 +
507 + // a couple of functions to let us escape the read loop
508 +
509 + void nodeZeroError( void ){
510 +  int j, myStatus;
511 +  
512 +  myStatus = 0;
513 +  for (j = 0; j < mpiSim->getNumberProcessors(); j++) {      
514 +    MPI::COMM_WORLD.Send( &myStatus, 1, MPI_INT, j,
515 +                          TAKE_THIS_TAG_INT);
516 +  }  
517 +  
518 +
519 +  MPI_Finalize();
520 +  exit (0);
521 +  
522 + }
523 +
524 + void anonymousNodeDie( void ){
525 +
526 +  MPI_Finalize();
527 +  exit (0);
528 + }
529 +
530 + #endif //is_mpi

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines