]> git.treefish.org Git - phys/latlib.git/blob - o815/o815.cpp
Implemented rw-cache. Made general options uppercase. Formatted options.
[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("ocache", required_argument, NULL,                'O', "set observable cache (mode=oo|ro|wo|rw)", "dir:mode");
45   addComOption("ccache", required_argument, NULL,                'C', "set config cache (mode=oo|ro|wo|rw)",     "dir:mode");
46   addComOption("write",  required_argument, NULL,                'W', "data writeout directory",                 "dir");
47   addComOption("idonly", no_argument,       &comargs.idonly,     'I', "show output-id only",                     "");
48   addComOption("jobnum", no_argument,       &comargs.showjobnum, 'J', "show jobnumber only",                     "");
49
50   vector<comoption>::iterator lastO815Opt = comOptions.end()-1;
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 << "General 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       if ( opit == lastO815Opt && (opit+1) != comOptions.end() ) {
97         cout << endl;
98         cout << "Simulation specific options:" << endl;
99       }
100     }
101     exit(0);
102   }
103
104   paraQ = new paraq(numprocs, rank);
105
106   hypercache::addPara("lx", comargs.lsize[0]);
107   hypercache::addPara("lt", comargs.lsize[1]);
108 }
109
110 void o815::postParaInit() {
111   long timestamp;
112
113   if(comargs.idonly) {
114     cout << programid << headMaster() << endl << flush;
115     exit(0);
116   }
117
118   if( comargs.showjobnum ) {
119     for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
120       if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
121     }
122     cout << endl;
123     exit(0);
124   }
125   
126   out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs);
127 }
128
129 void o815::mainLoop() {
130   *out->log << "OBS: Starting main loop." << endl;
131
132   for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
133     (*obsit)->start();
134
135   while( nextParas() ) {
136     *out->log << endl << "O815: < ";
137     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
138       *out->log << *parait << "=" << (*paraQ)[*parait] << " ";
139     *out->log << ">" << endl << flush;
140
141     Sim->_newParas();
142     
143     progress measProg(comargs.nmeas);
144
145     *out->log << "OBS: Starting measurement of observables:";
146     for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
147       *out->log << " " << (*obsit)->obsid;
148     *out->log << endl << flush;
149
150     for( int imeas=0; imeas<comargs.nmeas; imeas++ ) {
151       bool nextAlready = false;
152       for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit) {
153         bool readnewObs;
154         int nequileftNewObs;
155         
156         hypercache::readO( (*obsit)->ocid, &readnewObs, &nequileftNewObs );
157
158         if ( readnewObs && nequileftNewObs < 0 ) {
159           (*obsit)->meas(true, imeas);
160         }
161         else {
162           if (!nextAlready) {
163             Sim->nextConfig();
164             nextAlready = true;
165           }
166           (*obsit)->meas(false, imeas);
167           hypercache::writeO( (*obsit)->ocid );
168         }
169           
170       }
171       while( measProg.madeStep(imeas) ) 
172         *out->log << "O815: " << measProg.done()*100 << "% of measurements done." << endl << flush;
173     }
174     for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
175       (*obsit)->finish();
176   }
177 }
178
179 void o815::addComOption(const char* name, int has_arg, int *flag, int val, const char* optdesc, const char* argdesc) {
180   comoption newop = { name, has_arg, flag, val, optdesc, argdesc };
181   comOptions.push_back(newop);
182 }
183
184 void o815::parseArgs(int argc, char **argv, comoption specOps[]) {
185   int opt;
186   int indexptr=0;
187   stringstream optargstr;
188   option allOptions[comOptions.size()+1];
189
190   for (int iop=0; iop < comOptions.size(); iop++) {
191     allOptions[iop].name = comOptions[iop].name.c_str();
192     allOptions[iop].has_arg = comOptions[iop].has_arg;
193     //allOptions[iop].flag = NULL;
194     allOptions[iop].flag = comOptions[iop].flag;
195     allOptions[iop].val = comOptions[iop].val;
196
197     optargstr << char(allOptions[iop].val);
198     if (allOptions[iop].has_arg == required_argument)
199       optargstr << ":";
200     else if (allOptions[iop].has_arg == optional_argument)
201       optargstr << "::";
202   }
203
204   allOptions[comOptions.size()].name = 0;
205   allOptions[comOptions.size()].has_arg = 0;
206   allOptions[comOptions.size()].flag = 0;
207   allOptions[comOptions.size()].val = 0;
208
209   while((opt = getopt_long( argc, argv, optargstr.str().c_str(), allOptions, &indexptr )) != -1)
210     switch(opt) {
211     case 'L':
212       listArg(comargs.lsize, 2, optarg);
213       break;
214     case 'N':
215       comargs.nmeas = atoi(optarg);
216       break;
217     case 'S':
218       comargs.nskip = atoi(optarg);
219       break;
220     case 'E':
221       comargs.nequi = atoi(optarg);
222       break;
223     case 'O':
224       readCacheArgs(optarg, comargs.obscache.first, comargs.obscache.second);
225       break;
226     case 'C':
227       readCacheArgs(optarg, comargs.confcache.first, comargs.confcache.second);
228       break;
229     case 'w':
230       comargs.outdir = optarg;
231       break;
232     default:
233       if ( opt != 0) {
234         comoption* thisop = getOptionByVal(opt);
235         if (thisop->flag != 0)
236           *thisop->flag = thisop->val;
237         else
238           parsedSpecOps.push_back( pair<int,char*>(thisop->val, optarg) );
239       }
240       break;
241     }
242
243   for (int ilon=0; optind+ilon < argc; ilon++)
244     lonelyArgs.push_back(argv[optind+ilon]);
245 }
246
247 o815::comoption* o815::getOptionByVal(int val) {
248   for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit)
249     if ( opit->val == val )
250       return &(*opit);
251   exit(1);
252 }
253
254 void o815::listArg(int *target, int tlen, char *listarg) {
255   int nargs=0;
256   
257   for( int pos=0; pos<strlen(listarg); pos++ ) 
258     if( listarg[pos] == ':' ) nargs++;
259   
260   if(nargs==0) 
261     for(int i=0; i<tlen; i++) target[i] = atoi(listarg);
262   else
263     {
264       target[0] = atoi(strtok(listarg, ":"));
265       for(int i=0; i<nargs; i++)
266         target[i+1] = atoi(strtok(NULL, ":"));
267     }
268 }
269
270 string o815::headMaster()
271 {
272   stringstream hm;
273   
274   hm << "-L" << comargs.lsize[0] << "_" << comargs.lsize[1] << "-E" << comargs.nequi << "-S" << comargs.nskip << "-N" << comargs.nmeas 
275      << paraQ->rangeString();
276   
277   return hm.str();
278 }
279
280 o815::~o815() {
281   if(comargs.outdir=="") {
282 #ifndef MPI_DISABLED
283     MPI_Barrier(MPI_COMM_WORLD);
284 #endif
285     if(rank==0)
286       cout << "#end" << endl << flush;
287   }
288   hypercache::finalize();
289   delete out;
290 #ifndef MPI_DISABLED
291   MPI_Finalize();
292 #endif
293 }
294
295 int o815::nextParas()
296 {
297   if( paraQ->nextParas() ) {
298     for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
299       hypercache::setPara(*parait, (*paraQ)[*parait]);
300     return 1;
301   }
302   else
303     return 0;
304 }
305
306 void o815::addPara(const string& paraid, const double& paraDefault) {
307   hypercache::addPara(paraid);
308   paraQ->setDefault(paraid, paraDefault);
309 }
310
311 void o815::readCacheArgs(const string& arg, string& cachedir, int& cachemode)
312 {
313   if ( arg.rfind(":") == string::npos ) {
314     cerr << "O815: Invalid cache argument!" << endl;
315     exit(1);
316   }
317
318   string arg_mode = arg.substr( arg.rfind(":")+1 );
319   if ( arg_mode == "oo" )
320     cachemode = CACHE_MODE_OO;
321   else if ( arg_mode == "ro" )
322     cachemode = CACHE_MODE_RO;
323   else if ( arg_mode == "wo" )
324     cachemode = CACHE_MODE_WO;
325   else if ( arg_mode == "rw" )
326     cachemode = CACHE_MODE_RW;
327   else {
328     cerr << "O815: Unknown cache mode " << arg_mode << "!" << endl;
329     exit(1);
330   }
331
332   cachedir = arg.substr( 0, arg.rfind(":") );
333 }