]> git.treefish.org Git - phys/latlib.git/commitdiff
added support for using excluded config-files for equilibration.
authorAlex Schmidt <alex@treefish.org>
Wed, 15 May 2013 12:22:03 +0000 (14:22 +0200)
committerAlex Schmidt <alex@treefish.org>
Wed, 15 May 2013 12:22:03 +0000 (14:22 +0200)
configcache.cpp
configcache.h
hypercache.cpp
hypercache.h
o815/o815.h
o815/sim.cpp

index d45e4d661552340960c5cbb09d9cae4fcd7f23a8..6cd46a179a2772792ba5bc2caf202ec1fb5dbe98 100644 (file)
@@ -186,28 +186,17 @@ int configcache::readConfig(vector<unsigned long> *excludeFileHashes)
 
   while(true)
     {
-      if( (!inFile.is_open()) && inFiles.size() == 0 ) return nequileft;
+      vector<infiledesc>::iterator inFileIt = getNextInfile(excludeFileHashes);
 
-      while( (!inFile.is_open()) && inFiles.size() > 0 ) {
-       bool excludethisfile=false;
+      if( (!inFile.is_open()) && inFileIt == inFiles.end() ) return nequileft;
 
-       openFileDesc = inFiles.back();
+      while( (!inFile.is_open()) && inFiles.size() > 0 ) {
+       openFileDesc = *inFileIt;
 
-       if (excludeFileHashes != NULL)
-         for (vector<unsigned long>::iterator exit = excludeFileHashes->begin(); exit != excludeFileHashes->end(); ++exit)
-           if ( *exit == hash(inFiles.back().filename) ) {
-             excludethisfile = true;
-             break;
-           }
-             
-       if ( ! excludethisfile ) {
-         if(log) *log << "CCACHE: Opening dat-file: " << inFiles.back().filename << endl << flush;
-         inFile.open( (DATADIR + "/" + inFiles.back().filename).c_str(), std::ios::binary );
-       }
-       else
-         if(log) *log << "CCACHE: Excluded dat-file: " << inFiles.back().filename << endl << flush;
+       if(log) *log << "CCACHE: Opening dat-file: " << inFileIt->filename << endl << flush;
+       inFile.open( (DATADIR + "/" + inFileIt->filename).c_str(), std::ios::binary );
        
-       inFiles.pop_back();
+       inFiles.erase(inFileIt);
        
        if( !inFile.is_open() ) continue;
 
@@ -382,3 +371,22 @@ void configcache::deleteHeaderStore()
     headerStore.pop_back();
   }
 }
+
+vector<infiledesc>::iterator configcache::getNextInfile(vector<unsigned long> *excludeFileHashes) {
+  for (vector<infiledesc>::iterator init = inFiles.begin(); init != inFiles.end(); ++init) {
+    if (excludeFileHashes != NULL) {
+      bool excludethisfile = false;
+
+      for (vector<unsigned long>::iterator exit = excludeFileHashes->begin(); exit != excludeFileHashes->end(); ++exit)
+       if ( *exit == hash(init->filename) ) {
+         excludethisfile = true;
+         break;
+       }
+
+      if (excludethisfile)
+       continue;
+    }
+    return init;
+  }
+  return inFiles.end();
+}
index d79afa685d802b2132e9daa41d82a6941a3d41b5..82fa3f6787ccba006b242f56b645e00afcbf4b9c 100644 (file)
@@ -46,6 +46,8 @@ class configcache{
   string getOutFileName() { return outFileName.str(); }
   string getInFileName() { return DATADIR + "/" + openFileDesc.filename; }
   static unsigned long hash(const string& str);
+  void closeInFile() { inFile.close(); }
+  int inFilesLeft() { return inFiles.size(); }
 
  private:
   ostream* log;
@@ -100,6 +102,8 @@ class configcache{
   void deleteHeaderStore();
 
   bool readAllHeaders();
+
+  vector<infiledesc>::iterator getNextInfile(vector<unsigned long> *excludeFileHashes);
 };
 
 #endif
index 734a640469649d31b8837bed4a7c1a4ccf4a76e6..03a20f8f518519e1aaf08108a3a9f3b36cfa57e9 100644 (file)
@@ -73,6 +73,12 @@ int hypercache::readC() {
   return readret; 
 }
 
+int hypercache::read1CForEqui() {
+  int readret = C->readConfig(NULL);
+  C->closeInFile();
+  return readret;
+}
+
 void hypercache::writeC() {
   C->writeConfig();
   activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
index dd2ce0b493e152387030727137bbef5cb9e36a0b..a30e28eae462b669971228c57c30aeef4d22ad96 100644 (file)
@@ -33,6 +33,9 @@ class hypercache {
   static void *getHeaderC(const string& headerid) { C->getHeader(headerid); }
 
   static void finalize();
+
+  static int read1CForEqui();
+  static int CFilesLeft() { return C->inFilesLeft(); }
   
  private:
   struct para{
index 242d1e88a1a5631094f151529604f24bb48ba652..510e799730c64663ef0bd25626ea6706cf3f629b 100644 (file)
@@ -51,7 +51,7 @@ class o815 {
   protected:
     o815 *O815;
     ostream *log;
-    int nequi, nskip;
+    int nequi, nskip, confmemSize;
   };
 
   struct {
index 2e68ae21e8c1388c27447134d02138f78936fde3..1b81dda4401b4bd042750763445c5dac4cd5adad 100644 (file)
@@ -3,20 +3,41 @@
 #include "latlib/hypercache.h"
 #include "latlib/progress.h"
 
-o815::sim::sim(o815 *_O815, const int& confmemSize) {
+o815::sim::sim(o815 *_O815, const int& _confmemSize) {
   O815 = _O815;
   log = O815->out->log;
-  hypercache::initC(O815->programid, O815->comargs.nequi, O815->comargs.nskip, O815->comargs.confcache.first, &confMem, confmemSize, O815->comargs.confcache.second, log);
+  hypercache::initC(O815->programid, O815->comargs.nequi, O815->comargs.nskip, O815->comargs.confcache.first, &confMem, _confmemSize, O815->comargs.confcache.second, log);
   toEquilibrate = true;
   nequi = O815->comargs.nequi;
   nskip = O815->comargs.nskip;
+  confmemSize = confmemSize;
 }
 
 void o815::sim::nextConfig() {
   int nequileft = hypercache::readC();
 
   if ( nequileft != -1 ) {
-    if(toEquilibrate) {
+    /* try to use excluded config-file for equilibration */
+    if (toEquilibrate && hypercache::CFilesLeft() > 0) {
+      int exnequileft;
+      char *tmpconfig = (char*) malloc(confmemSize);
+
+      memcpy (tmpconfig, confMem, confmemSize);
+      exnequileft = hypercache::read1CForEqui();
+
+      if (exnequileft < nequileft) {
+       *log << "SIM: Found suitable excluded config-file configuration for equilibration." << endl << flush;
+       nequileft = exnequileft;
+      }
+      else {
+       *log << "SIM: Could not find suitable excluded config-file configuration for equilibration." << endl << flush;
+       memcpy (confMem, tmpconfig, confmemSize);
+      }
+
+      free(tmpconfig);
+    }
+
+    if(toEquilibrate && nequileft > 0) {
       _reset();
       *log << "SIM: Starting equilibration." << endl << flush;
       if (nequileft != nequi)
@@ -26,7 +47,8 @@ void o815::sim::nextConfig() {
        _makeSweep(1);
        while( equiProg.madeStep(iequi) ) *log << "SIM: " << equiProg.done()*100 << "% of equilibration done." << endl << flush;
       }
-    }  
+    }
+       
     _makeSweep(nskip);
     hypercache::writeC();
   }