]> git.treefish.org Git - phys/latlib.git/blob - o815/o815.cpp
...
[phys/latlib.git] / o815 / o815.cpp
1 #include "o815.h"
2
3 #include <sstream>
4
5 #include "latlib/progress.h"
6
7 o815::o815(int argc, char **argv, const string& _programid) {
8   long timestamp;
9
10   programid = _programid;
11
12   comargs.nmeas = 100;
13   comargs.nskip = 10;
14   comargs.nequi = 100;
15   comargs.lsize[0] = 4;
16   comargs.lsize[1] = 4;
17   comargs.obscache = make_pair("",0);
18   comargs.confcache = make_pair("",0);
19   comargs.outdir="";
20   comargs.idonly = false;
21   comargs.showjobnum = false;
22
23   MPI_Init(&argc, &argv);
24   MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
25   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
26
27   paraQ = new paraq(numprocs, rank);
28
29   parseArgs(argc, argv);
30
31   if(comargs.idonly) {
32     cout << programid << headMaster() << endl << flush;
33     exit(0);
34   }
35
36   if( comargs.showjobnum ) {
37     for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
38       if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
39     }
40     cout << endl;
41     exit(0);
42   }
43
44   if(rank==0) {
45     timestamp = time(NULL);
46     for(int idest=1; idest<numprocs; idest++)
47       MPI_Send(&timestamp, 1, MPI_LONG, idest, 123, MPI_COMM_WORLD);
48   }
49   else if(rank>0)
50     MPI_Recv(&timestamp, 1, MPI_LONG, 0, 123, MPI_COMM_WORLD, &mpiStatus);
51   
52   out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs, timestamp);
53 }
54
55 void o815::mainLoop() {
56   *out->log << "OBS: Starting main loop." << endl;
57
58   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
59     (*obsit)->start();
60
61   while( nextParas() ) {
62     *out->log << endl << "O815: < ";
63     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
64       *out->log << *parait << "=" << (*paraQ)[*parait] << " ";
65     *out->log << ">" << endl << flush;
66     
67     progress measProg(comargs.nmeas);
68
69     *out->log << "OBS: Starting measurements." << endl << flush;
70
71     for( int imeas=0; imeas<comargs.nmeas; imeas++ ) {
72       bool nextAlready = false;
73       for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit) {
74         if( hypercache::readO( (*obsit)->ocid ) != -1 ) {
75           if (!nextAlready) {
76             Sim->nextConfig();
77             nextAlready = true;
78           }
79           (*obsit)->meas(false);
80           hypercache::writeO( (*obsit)->ocid );
81         }
82         else
83           (*obsit)->meas(true);
84       }
85       while( measProg.madeStep(imeas) ) 
86         *out->log << "O815: " << measProg.done()*100 << "% of measurements done." << endl << flush;
87     }
88     for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
89       (*obsit)->finish();
90   }
91 }
92
93 void o815::parseArgs(int argc, char **argv) {
94   int opt = 0;
95   
96   while( (opt = getopt(argc, argv, "L:N:S:E:o:O:c:C:w:i:j:")) != -1 )
97     switch(opt) {
98     case 'L':
99       listArg(comargs.lsize, 2, optarg);
100       break;
101     case 'N':
102       comargs.nmeas = atoi(optarg);
103       break;
104     case 'S':
105       comargs.nskip = atoi(optarg);
106       break;
107     case 'E':
108       comargs.nequi = atoi(optarg);
109       break;
110     case 'o':
111       comargs.obscache.first = optarg;
112       comargs.obscache.second = 1;
113       break;
114     case 'O':
115       comargs.obscache.first = optarg;
116       comargs.obscache.second = 2;
117       break;
118     case 'c':
119       comargs.confcache.first = optarg;
120       comargs.confcache.second = 1;
121       break;
122     case 'C':
123       comargs.confcache.first = optarg;
124       comargs.confcache.second = 2;
125       break;
126     case 'w':
127       comargs.outdir = optarg;
128       break;
129     case 'i':
130       comargs.idonly = atoi(optarg);
131       break;
132     case 'j':
133       comargs.showjobnum = atoi(optarg);
134       break;
135     }
136 }
137
138 void o815::listArg(int *target, int tlen, char *listarg) {
139   int nargs=0;
140   
141   for( int pos=0; pos<strlen(listarg); pos++ ) 
142     if( listarg[pos] == ':' ) nargs++;
143   
144   if(nargs==0) 
145     for(int i=0; i<tlen; i++) target[i] = atoi(listarg);
146   else
147     {
148       target[0] = atoi(strtok(listarg, ":"));
149       for(int i=0; i<nargs; i++)
150         target[i+1] = atoi(strtok(NULL, ":"));
151     }
152 }
153
154 string o815::headMaster()
155 {
156   stringstream hm;
157   
158   hm << "-L" << comargs.lsize[0] << "_" << comargs.lsize[1] << "-E" << comargs.nequi << "-S" << comargs.nskip << "-N" << comargs.nmeas 
159      << paraQ->rangeString();
160   
161   return hm.str();
162 }
163
164 o815::~o815() {
165   if(comargs.outdir=="") {
166     MPI_Barrier(MPI_COMM_WORLD);
167     if(rank==0)
168       cout << "#end" << endl << flush;
169   }
170   hypercache::finalize();
171   delete out;
172   MPI_Finalize();
173 }
174
175 int o815::nextParas()
176 {
177   if( paraQ->nextParas() ) {
178     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
179       hypercache::setPara(*parait, (*paraQ)[*parait]);
180     return 1;
181   }
182   else
183     return 0;
184 }
185
186 void o815::addPara(const string& paraid, const double& paraDefault) {
187   hypercache::addPara(paraid);
188   paraQ->setDefault(paraid, paraDefault);
189 }