ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/brains/SimCreator.cpp
(Generate patch)

Comparing trunk/src/brains/SimCreator.cpp (file contents):
Revision 1793 by gezelter, Fri Aug 31 21:16:10 2012 UTC vs.
Revision 1802 by gezelter, Wed Oct 3 14:07:28 2012 UTC

# Line 506 | Line 506 | namespace OpenMD {
506      int nGlobalMols = info->getNGlobalMolecules();
507      std::vector<int> molToProcMap(nGlobalMols, -1); // default to an error condition:
508      
509 <    MPI_Comm_size(MPI_COMM_WORLD, &nProcessors);
509 >    nProcessors = MPI::COMM_WORLD.Get_size();
510      
511      if (nProcessors > nGlobalMols) {
512        sprintf(painCave.errMsg,
# Line 544 | Line 544 | namespace OpenMD {
544        nTarget = (int)(precast + 0.5);
545        
546        for(i = 0; i < nGlobalMols; i++) {
547 +
548          done = 0;
549          loops = 0;
550          
# Line 568 | Line 569 | namespace OpenMD {
569            // and be done with it.
570            
571            if (loops > 100) {
572 +
573              sprintf(painCave.errMsg,
574 <                    "I've tried 100 times to assign molecule %d to a "
575 <                    " processor, but can't find a good spot.\n"
576 <                    "I'm assigning it at random to processor %d.\n",
574 >                    "There have been 100 attempts to assign molecule %d to an\n"
575 >                    "\tunderworked processor, but there's no good place to\n"
576 >                    "\tleave it.  OpenMD is assigning it at random to processor %d.\n",
577                      i, which_proc);
578 <            
578 >          
579              painCave.isFatal = 0;
580 +            painCave.severity = OPENMD_INFO;
581              simError();
582              
583              molToProcMap[i] = which_proc;
# Line 619 | Line 622 | namespace OpenMD {
622        }
623        
624        delete myRandom;
625 <      
625 >
626        // Spray out this nonsense to all other processors:
627 <      
625 <      MPI_Bcast(&molToProcMap[0], nGlobalMols, MPI_INT, 0, MPI_COMM_WORLD);
627 >      MPI::COMM_WORLD.Bcast(&molToProcMap[0], nGlobalMols, MPI::INT, 0);
628      } else {
629        
630        // Listen to your marching orders from processor 0:
631 <      
632 <      MPI_Bcast(&molToProcMap[0], nGlobalMols, MPI_INT, 0, MPI_COMM_WORLD);
631 >      MPI::COMM_WORLD.Bcast(&molToProcMap[0], nGlobalMols, MPI::INT, 0);
632 >
633      }
634      
635      info->setMolToProcMap(molToProcMap);
# Line 785 | Line 787 | namespace OpenMD {
787      int beginRigidBodyIndex;
788      int beginCutoffGroupIndex;
789      int nGlobalAtoms = info->getNGlobalAtoms();
790 +    int nGlobalRigidBodies = info->getNGlobalRigidBodies();
791      
792      beginAtomIndex = 0;
793      //rigidbody's index begins right after atom's
# Line 851 | Line 854 | namespace OpenMD {
854      // This would be prettier if we could use MPI_IN_PLACE like the MPI-2
855      // docs said we could.
856      std::vector<int> tmpGroupMembership(info->getNGlobalAtoms(), 0);
857 <    MPI_Allreduce(&globalGroupMembership[0], &tmpGroupMembership[0], nGlobalAtoms,
858 <                  MPI_INT, MPI_SUM, MPI_COMM_WORLD);
857 >    MPI::COMM_WORLD.Allreduce(&globalGroupMembership[0],
858 >                              &tmpGroupMembership[0], nGlobalAtoms,
859 >                              MPI::INT, MPI::SUM);
860      info->setGlobalGroupMembership(tmpGroupMembership);
861   #else
862      info->setGlobalGroupMembership(globalGroupMembership);
863   #endif
864      
865      //fill molMembership
866 <    std::vector<int> globalMolMembership(info->getNGlobalAtoms(), 0);
866 >    std::vector<int> globalMolMembership(info->getNGlobalAtoms() +
867 >                                         info->getNGlobalRigidBodies(), 0);
868      
869 <    for(mol = info->beginMolecule(mi); mol != NULL; mol = info->nextMolecule(mi)) {
869 >    for(mol = info->beginMolecule(mi); mol != NULL;
870 >        mol = info->nextMolecule(mi)) {
871        for(atom = mol->beginAtom(ai); atom != NULL; atom = mol->nextAtom(ai)) {
872          globalMolMembership[atom->getGlobalIndex()] = mol->getGlobalIndex();
873        }
874 +      for (rb = mol->beginRigidBody(ri); rb != NULL;
875 +           rb = mol->nextRigidBody(ri)) {
876 +        globalMolMembership[rb->getGlobalIndex()] = mol->getGlobalIndex();
877 +      }
878      }
879      
880   #ifdef IS_MPI
881 <    std::vector<int> tmpMolMembership(info->getNGlobalAtoms(), 0);
881 >    std::vector<int> tmpMolMembership(info->getNGlobalAtoms() +
882 >                                      info->getNGlobalRigidBodies(), 0);
883 >    MPI::COMM_WORLD.Allreduce(&globalMolMembership[0], &tmpMolMembership[0],
884 >                              nGlobalAtoms + nGlobalRigidBodies,
885 >                              MPI::INT, MPI::SUM);
886      
873    MPI_Allreduce(&globalMolMembership[0], &tmpMolMembership[0], nGlobalAtoms,
874                  MPI_INT, MPI_SUM, MPI_COMM_WORLD);
875    
887      info->setGlobalMolMembership(tmpMolMembership);
888   #else
889      info->setGlobalMolMembership(globalMolMembership);
# Line 882 | Line 893 | namespace OpenMD {
893      // here the molecules are listed by their global indices.
894  
895      std::vector<int> nIOPerMol(info->getNGlobalMolecules(), 0);
896 <    for (mol = info->beginMolecule(mi); mol != NULL; mol = info->nextMolecule(mi)) {
896 >    for (mol = info->beginMolecule(mi); mol != NULL;
897 >         mol = info->nextMolecule(mi)) {
898        nIOPerMol[mol->getGlobalIndex()] = mol->getNIntegrableObjects();      
899      }
900      
901   #ifdef IS_MPI
902      std::vector<int> numIntegrableObjectsPerMol(info->getNGlobalMolecules(), 0);
903 <    MPI_Allreduce(&nIOPerMol[0], &numIntegrableObjectsPerMol[0],
904 <                  info->getNGlobalMolecules(), MPI_INT, MPI_SUM, MPI_COMM_WORLD);
903 >    MPI::COMM_WORLD.Allreduce(&nIOPerMol[0], &numIntegrableObjectsPerMol[0],
904 >                              info->getNGlobalMolecules(), MPI::INT, MPI::SUM);
905   #else
906      std::vector<int> numIntegrableObjectsPerMol = nIOPerMol;
907   #endif    
# Line 903 | Line 915 | namespace OpenMD {
915      }
916      
917      std::vector<StuntDouble*> IOIndexToIntegrableObject(info->getNGlobalIntegrableObjects(), (StuntDouble*)NULL);
918 <    for (mol = info->beginMolecule(mi); mol != NULL; mol = info->nextMolecule(mi)) {
918 >    for (mol = info->beginMolecule(mi); mol != NULL;
919 >         mol = info->nextMolecule(mi)) {
920        int myGlobalIndex = mol->getGlobalIndex();
921        int globalIO = startingIOIndexForMol[myGlobalIndex];
922        for (StuntDouble* sd = mol->beginIntegrableObject(ioi); sd != NULL;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines