8 #include "latlib/progress.h"
14 o815::o815(int argc, char **argv, const string& _programid, comoption specOps[], void (*helpHeader)()) {
15 programid = _programid;
22 comargs.obscache = make_pair("",0);
23 comargs.confcache = make_pair("",0);
25 comargs.idonly = false;
26 comargs.showjobnum = false;
28 MPI_Init(&argc, &argv);
29 MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
30 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
32 addComOption("lsize", required_argument, NULL, 'L', "define lattice size", "xsize:tsize");
33 addComOption("nmeas", required_argument, NULL, 'N', "set number of measurements", "nmeas");
34 addComOption("skip", required_argument, NULL, 'S', "set number of skips between configs", "nskip");
35 addComOption("nequi", required_argument, NULL, 'E', "set number of equilibrations", "nequi");
36 addComOption("oro", required_argument, NULL, 'o', "read-only observable-store directory", "dir");
37 addComOption("orw", required_argument, NULL, 'O', "read-write observable-store directory", "dir");
38 addComOption("cro", required_argument, NULL, 'c', "read-only config-store directory", "dir");
39 addComOption("crw", required_argument, NULL, 'C', "read-write config-store directory", "dir");
40 addComOption("write", required_argument, NULL, 'w', "data writeout directory", "dir");
41 addComOption("idonly", no_argument, &comargs.idonly, 'i', "show output-id only", "");
42 addComOption("jobnum", no_argument, &comargs.showjobnum, 'j', "show jobnumber only", "");
45 for (int ispecop = 0; specOps[ispecop].name != ""; ispecop++)
46 comOptions.push_back(specOps[ispecop]);
49 parseArgs(argc, argv, specOps);
51 int longestCombinedLong=0;
53 if (helpHeader != NULL)
56 cout << "Options:" << endl;
58 for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit) {
59 stringstream combinedLong;
61 combinedLong << opit->name;
62 if (opit->has_arg == required_argument)
63 combinedLong << "=" << opit->argdesc;
64 else if (opit->has_arg == optional_argument)
65 combinedLong << "[=" << opit->argdesc << "]";
67 if (longestCombinedLong < combinedLong.str().size())
68 longestCombinedLong = combinedLong.str().size();
71 for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit) {
72 stringstream combinedLong;
74 cout << " -" << char(opit->val) << ", --";
76 combinedLong << opit->name;
77 if (opit->has_arg == required_argument)
78 combinedLong << "=" << opit->argdesc;
79 else if (opit->has_arg == optional_argument)
80 combinedLong << "[=" << opit->argdesc << "]";
82 cout << setw(longestCombinedLong) << setiosflags(ios::left) << combinedLong.str();
84 cout << "\t" << opit->optdesc;
91 paraQ = new paraq(numprocs, rank);
93 hypercache::addPara("lx", comargs.lsize[0]);
94 hypercache::addPara("lt", comargs.lsize[1]);
97 void o815::postParaInit() {
101 cout << programid << headMaster() << endl << flush;
105 if( comargs.showjobnum ) {
106 for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
107 if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
114 timestamp = time(NULL);
115 for(int idest=1; idest<numprocs; idest++)
116 MPI_Send(×tamp, 1, MPI_LONG, idest, 123, MPI_COMM_WORLD);
119 MPI_Recv(×tamp, 1, MPI_LONG, 0, 123, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
121 out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs, timestamp);
124 void o815::mainLoop() {
125 *out->log << "OBS: Starting main loop." << endl;
127 for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
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;
138 progress measProg(comargs.nmeas);
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;
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) {
151 hypercache::readO( (*obsit)->ocid, &readnewObs, &nequileftNewObs );
153 if ( readnewObs && nequileftNewObs < 0 ) {
154 (*obsit)->meas(true, imeas);
161 (*obsit)->meas(false, imeas);
162 hypercache::writeO( (*obsit)->ocid );
166 while( measProg.madeStep(imeas) )
167 *out->log << "O815: " << measProg.done()*100 << "% of measurements done." << endl << flush;
169 for (vector<obs*>::iterator obsit = observables.begin(); obsit != observables.end(); ++obsit)
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);
179 void o815::parseArgs(int argc, char **argv, comoption specOps[]) {
182 stringstream optargstr;
183 option allOptions[comOptions.size()+1];
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;
192 optargstr << char(allOptions[iop].val);
193 if (allOptions[iop].has_arg == required_argument)
195 else if (allOptions[iop].has_arg == optional_argument)
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;
204 while((opt = getopt_long( argc, argv, optargstr.str().c_str(), allOptions, &indexptr )) != -1)
207 listArg(comargs.lsize, 2, optarg);
210 comargs.nmeas = atoi(optarg);
213 comargs.nskip = atoi(optarg);
216 comargs.nequi = atoi(optarg);
219 comargs.obscache.first = optarg;
220 comargs.obscache.second = 1;
223 comargs.obscache.first = optarg;
224 comargs.obscache.second = 2;
227 comargs.confcache.first = optarg;
228 comargs.confcache.second = 1;
231 comargs.confcache.first = optarg;
232 comargs.confcache.second = 2;
235 comargs.outdir = optarg;
239 comoption* thisop = getOptionByVal(opt);
240 if (thisop->flag != 0)
241 *thisop->flag = thisop->val;
243 parsedSpecOps.push_back( pair<int,char*>(thisop->val, optarg) );
248 for (int ilon=0; optind+ilon < argc; ilon++)
249 lonelyArgs.push_back(argv[optind+ilon]);
252 o815::comoption* o815::getOptionByVal(int val) {
253 for (vector<comoption>::iterator opit = comOptions.begin(); opit != comOptions.end(); ++opit)
254 if ( opit->val == val )
259 void o815::listArg(int *target, int tlen, char *listarg) {
262 for( int pos=0; pos<strlen(listarg); pos++ )
263 if( listarg[pos] == ':' ) nargs++;
266 for(int i=0; i<tlen; i++) target[i] = atoi(listarg);
269 target[0] = atoi(strtok(listarg, ":"));
270 for(int i=0; i<nargs; i++)
271 target[i+1] = atoi(strtok(NULL, ":"));
275 string o815::headMaster()
279 hm << "-L" << comargs.lsize[0] << "_" << comargs.lsize[1] << "-E" << comargs.nequi << "-S" << comargs.nskip << "-N" << comargs.nmeas
280 << paraQ->rangeString();
286 if(comargs.outdir=="") {
287 MPI_Barrier(MPI_COMM_WORLD);
289 cout << "#end" << endl << flush;
291 hypercache::finalize();
296 int o815::nextParas()
298 if( paraQ->nextParas() ) {
299 for (vector<string>::iterator parait = paraQ->allParaIds.begin(); parait != paraQ->allParaIds.end(); ++parait)
300 hypercache::setPara(*parait, (*paraQ)[*parait]);
307 void o815::addPara(const string& paraid, const double& paraDefault) {
308 hypercache::addPara(paraid);
309 paraQ->setDefault(paraid, paraDefault);