]> git.treefish.org Git - phys/latlib.git/blob - o815/o815.cpp
Fixed MPI cmake config.
[phys/latlib.git] / o815 / o815.cpp
1 #include "o815.h"
2
3 #include <sstream>
4 #include <iomanip>
5 #include <cstring>
6
7 #ifndef MPI_DISABLED
8 #include <mpi.h>
9 #endif
10
11 #include "latlib/progress.h"
12
13 using namespace std;
14
15 extern int opterr;
16
17 o815::o815(int argc, char **argv, const string& _programid, comoption specOps[], void (*helpHeader)()) {
18   programid = _programid;
19
20   comargs.nmeas = 100;
21   comargs.nskip = 10;
22   comargs.nequi = 100;
23   comargs.lsize[0] = 4;
24   comargs.lsize[1] = 4;
25   comargs.obscache = make_pair("",0);
26   comargs.confcache = make_pair("",0);
27   comargs.outdir="";
28   comargs.idonly = false;
29   comargs.showjobnum = false;
30
31 #ifndef MPI_DISABLED
32   MPI_Init(&argc, &argv);
33   MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
34   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
35 #else
36   numprocs = 1;
37   rank = 0;
38 #endif
39
40   addComOption("lsize",  required_argument, NULL,                'L', "define lattice size",                   "xsize:tsize");
41   addComOption("nmeas",  required_argument, NULL,                'N', "set number of measurements",            "nmeas");
42   addComOption("skip",   required_argument, NULL,                'S', "set number of skips between configs",   "nskip");
43   addComOption("nequi",  required_argument, NULL,                'E', "set number of equilibrations",          "nequi");
44   addComOption("oro",    required_argument, NULL,                'o', "read-only observable-store directory",  "dir");
45   addComOption("orw",    required_argument, NULL,                'O', "read-write observable-store directory", "dir");
46   addComOption("cro",    required_argument, NULL,                'c', "read-only config-store directory",      "dir");
47   addComOption("crw",    required_argument, NULL,                'C', "read-write config-store directory",     "dir");
48   addComOption("write",  required_argument, NULL,                'w', "data writeout directory",               "dir");
49   addComOption("idonly", no_argument,       &comargs.idonly,     'i', "show output-id only",                   "");
50   addComOption("jobnum", no_argument,       &comargs.showjobnum, 'j', "show jobnumber only",                   "");
51
52   if (specOps != NULL)
53     for (int ispecop = 0; specOps[ispecop].name != ""; ispecop++)
54       comOptions.push_back(specOps[ispecop]);
55
56   if (argc > 1)
57     parseArgs(argc, argv, specOps);
58   else {
59     int longestCombinedLong=0;
60     
61     if (helpHeader != NULL)
62       helpHeader();
63
64     cout << "Options:" << endl;
65
66     for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit) {
67       stringstream combinedLong;
68
69       combinedLong << opit->name;
70       if (opit->has_arg == required_argument)
71         combinedLong << "=" << opit->argdesc;
72       else if (opit->has_arg == optional_argument)
73         combinedLong << "[=" << opit->argdesc << "]";
74
75       if (longestCombinedLong < combinedLong.str().size())
76         longestCombinedLong = combinedLong.str().size();
77     }
78
79     for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit) {
80       stringstream combinedLong;
81
82       cout << "  -" << char(opit->val) << ", --";
83
84       combinedLong << opit->name;
85       if (opit->has_arg == required_argument)
86         combinedLong << "=" << opit->argdesc;
87       else if (opit->has_arg == optional_argument)
88         combinedLong << "[=" << opit->argdesc << "]";
89
90       cout << setw(longestCombinedLong) << setiosflags(ios::left) << combinedLong.str();
91
92       cout << "\t" << opit->optdesc;
93       
94       cout << endl;
95     }
96     exit(0);
97   }
98
99   paraQ = new paraq(numprocs, rank);
100
101   hypercache::addPara("lx", comargs.lsize[0]);
102   hypercache::addPara("lt", comargs.lsize[1]);
103 }
104
105 void o815::postParaInit() {
106   long timestamp;
107
108   if(comargs.idonly) {
109     cout << programid << headMaster() << endl << flush;
110     exit(0);
111   }
112
113   if( comargs.showjobnum ) {
114     for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
115       if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
116     }
117     cout << endl;
118     exit(0);
119   }
120   
121   out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs);
122 }
123
124 void o815::mainLoop() {
125   *out->log << "OBS: Starting main loop." << endl;
126
127   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
128     (*obsit)->start();
129
130   while( nextParas() ) {
131     *out->log << endl << "O815: < ";
132     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
133       *out->log << *parait << "=" << (*paraQ)[*parait] << " ";
134     *out->log << ">" << endl << flush;
135
136     Sim->_newParas();
137     
138     progress measProg(comargs.nmeas);
139
140     *out->log << "OBS: Starting measurement of observables:";
141     for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
142       *out->log << " " << (*obsit)->obsid;
143     *out->log << endl << flush;
144
145     for( int imeas=0; imeas<comargs.nmeas; imeas++ ) {
146       bool nextAlready = false;
147       for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit) {
148         bool readnewObs;
149         int nequileftNewObs;
150         
151         hypercache::readO( (*obsit)->ocid, &readnewObs, &nequileftNewObs );
152
153         if ( readnewObs && nequileftNewObs < 0 ) {
154           (*obsit)->meas(true, imeas);
155         }
156         else {
157           if (!nextAlready) {
158             Sim->nextConfig();
159             nextAlready = true;
160           }
161           (*obsit)->meas(false, imeas);
162           hypercache::writeO( (*obsit)->ocid );
163         }
164           
165       }
166       while( measProg.madeStep(imeas) ) 
167         *out->log << "O815: " << measProg.done()*100 << "% of measurements done." << endl << flush;
168     }
169     for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
170       (*obsit)->finish();
171   }
172 }
173
174 void o815::addComOption(const char* name, int has_arg, int *flag, int val, const char* optdesc, const char* argdesc) {
175   comoption newop = { name, has_arg, flag, val, optdesc, argdesc };
176   comOptions.push_back(newop);
177 }
178
179 void o815::parseArgs(int argc, char **argv, comoption specOps[]) {
180   int opt;
181   int indexptr=0;
182   stringstream optargstr;
183   option allOptions[comOptions.size()+1];
184
185   for (int iop=0; iop < comOptions.size(); iop++) {
186     allOptions[iop].name = comOptions[iop].name.c_str();
187     allOptions[iop].has_arg = comOptions[iop].has_arg;
188     //allOptions[iop].flag = NULL;
189     allOptions[iop].flag = comOptions[iop].flag;
190     allOptions[iop].val = comOptions[iop].val;
191
192     optargstr << char(allOptions[iop].val);
193     if (allOptions[iop].has_arg == required_argument)
194       optargstr << ":";
195     else if (allOptions[iop].has_arg == optional_argument)
196       optargstr << "::";
197   }
198
199   allOptions[comOptions.size()].name = 0;
200   allOptions[comOptions.size()].has_arg = 0;
201   allOptions[comOptions.size()].flag = 0;
202   allOptions[comOptions.size()].val = 0;
203
204   while((opt = getopt_long( argc, argv, optargstr.str().c_str(), allOptions, &indexptr )) != -1)
205     switch(opt) {
206     case 'L':
207       listArg(comargs.lsize, 2, optarg);
208       break;
209     case 'N':
210       comargs.nmeas = atoi(optarg);
211       break;
212     case 'S':
213       comargs.nskip = atoi(optarg);
214       break;
215     case 'E':
216       comargs.nequi = atoi(optarg);
217       break;
218     case 'o':
219       comargs.obscache.first = optarg;
220       comargs.obscache.second = 1;
221       break;
222     case 'O':
223       comargs.obscache.first = optarg;
224       comargs.obscache.second = 2;
225       break;
226     case 'c':
227       comargs.confcache.first = optarg;
228       comargs.confcache.second = 1;
229       break;
230     case 'C':
231       comargs.confcache.first = optarg;
232       comargs.confcache.second = 2;
233       break;
234     case 'w':
235       comargs.outdir = optarg;
236       break;
237     default:
238       if ( opt != 0) {
239         comoption* thisop = getOptionByVal(opt);
240         if (thisop->flag != 0)
241           *thisop->flag = thisop->val;
242         else
243           parsedSpecOps.push_back( pair<int,char*>(thisop->val, optarg) );
244       }
245       break;
246     }
247
248   for (int ilon=0; optind+ilon < argc; ilon++)
249     lonelyArgs.push_back(argv[optind+ilon]);
250 }
251
252 o815::comoption* o815::getOptionByVal(int val) {
253   for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit)
254     if ( opit->val == val )
255       return &(*opit);
256   exit(1);
257 }
258
259 void o815::listArg(int *target, int tlen, char *listarg) {
260   int nargs=0;
261   
262   for( int pos=0; pos<strlen(listarg); pos++ ) 
263     if( listarg[pos] == ':' ) nargs++;
264   
265   if(nargs==0) 
266     for(int i=0; i<tlen; i++) target[i] = atoi(listarg);
267   else
268     {
269       target[0] = atoi(strtok(listarg, ":"));
270       for(int i=0; i<nargs; i++)
271         target[i+1] = atoi(strtok(NULL, ":"));
272     }
273 }
274
275 string o815::headMaster()
276 {
277   stringstream hm;
278   
279   hm << "-L" << comargs.lsize[0] << "_" << comargs.lsize[1] << "-E" << comargs.nequi << "-S" << comargs.nskip << "-N" << comargs.nmeas 
280      << paraQ->rangeString();
281   
282   return hm.str();
283 }
284
285 o815::~o815() {
286   if(comargs.outdir=="") {
287 #ifndef MPI_DISABLED
288     MPI_Barrier(MPI_COMM_WORLD);
289 #endif
290     if(rank==0)
291       cout << "#end" << endl << flush;
292   }
293   hypercache::finalize();
294   delete out;
295 #ifndef MPI_DISABLED
296   MPI_Finalize();
297 #endif
298 }
299
300 int o815::nextParas()
301 {
302   if( paraQ->nextParas() ) {
303     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
304       hypercache::setPara(*parait, (*paraQ)[*parait]);
305     return 1;
306   }
307   else
308     return 0;
309 }
310
311 void o815::addPara(const string& paraid, const double& paraDefault) {
312   hypercache::addPara(paraid);
313   paraQ->setDefault(paraid, paraDefault);
314 }