Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Mareframe
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[mareframe] Diff of /trunk/gadget/hooke.cc
[mareframe] / trunk / gadget / hooke.cc Repository:
ViewVC logotype

Diff of /trunk/gadget/hooke.cc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14, Thu Jul 30 12:36:46 2015 UTC revision 20, Fri Apr 7 09:20:55 2017 UTC
# Line 139  Line 139 
139  #include "ecosystem.h"  #include "ecosystem.h"
140  #include "global.h"  #include "global.h"
141    
142  #ifndef NO_OPENMP  #ifdef _OPENMP
143  #include "omp.h"  #include "omp.h"
144  #endif  #endif
145    
146  extern Ecosystem* EcoSystem;  extern Ecosystem* EcoSystem;
147  #ifndef NO_OPENMP  #ifdef _OPENMP
148  extern Ecosystem** EcoSystems;  extern Ecosystem** EcoSystems;
149  #endif  #endif
150    
# Line 178  Line 178 
178  }  }
179    
180  /* given a point, look for a better one nearby, one coord at a time */  /* given a point, look for a better one nearby, one coord at a time */
181  #ifndef NO_OPENMP  #ifdef _OPENMP
182  /*  /*
183   * function bestBeraby parallelized with OpenMP   * function bestBeraby parallelized with OpenMP
184   * · 2 threads per coord to parallelize the calculation of +delta/-delta   * · 2 threads per coord to parallelize the calculation of +delta/-delta
185   * · parallelize the calculation of the best nearby of the coord   * · parallelize the calculation of the best nearby of the coord
186   */   */
187  double OptInfoHooke::bestNearbyOMP(DoubleVector& delta, DoubleVector& point, double prevbest, IntVector& param) {  double OptInfoHooke::bestNearbyRepro(DoubleVector& delta, DoubleVector& point, double prevbest, IntVector& param) {
188    double minf;//, ftmp;    double minf;//, ftmp;
189    int i, j, k;    int i, j, k;
190    DoubleVector z(point);    DoubleVector z(point);
# Line 209  Line 209 
209            return -1;            return -1;
210    }    }
211    
212    //  omp_set_dynamic(0);
213    //  omp_set_nested(1); //permit the nested parallelization
214    while ( i < nvars) {    while ( i < nvars) {
215            if ((i + paral_tokens -1) >= nvars)            if ((i + paral_tokens -1) >= nvars)
216                    paral_tokens = nvars - i;                    paral_tokens = nvars - i;
217            omp_set_dynamic(0);  #pragma omp parallel for num_threads(paral_tokens*2) private(k) //parallelize the parameters (numThr)
218            omp_set_nested(1); //permit the nested parallelization            for (j = 0; j < (paral_tokens*2); ++j) {
 #pragma omp parallel for num_threads(paral_tokens) private(k) //parallelize the parameters (numThr/2)  
           for (j = 0; j < paral_tokens; ++j) {  
219                    storage[j].z = z;                    storage[j].z = z;
220                    storage[j].delta = delta;                    storage[j].delta = delta;
221                    DoubleVector v1(z);                    DoubleVector v(z);
                   DoubleVector v2(z);  
                   k = param[i+j];  
                   v1[k] +=  delta[k];  
                   v2[k] -=  delta[k];  
222    
223  #pragma omp parallel sections num_threads(2) //parrallelize the +/- delta simulation for each parameter                    if (j<paral_tokens) {
224                    {                            k = param[i+j];
225          #pragma omp section                            v[k] +=  delta[k];
                           {  
                   storage[j].ftmp = EcoSystems[j]->SimulateAndUpdate(v1);  
                           }  
         #pragma omp section  
                           {  
                   storage[j+paral_tokens].ftmp = EcoSystems[j+paral_tokens]->SimulateAndUpdate(v2);  
226                            }                            }
227                      else {
228                              k = param[i+j-paral_tokens];
229                              v[k] -=  delta[k];
230                    }                    }
231    
232                      storage[j].ftmp = EcoSystems[j]->SimulateAndUpdate(v);
233                      storage[j].z[k] = v[k];
234              }
235              for (j = 0; j < paral_tokens; ++j) {
236                      k = param[i+j];
237                    if (storage[j].ftmp < minf) {                    if (storage[j].ftmp < minf) {
238                            storage[j].iters = 1;                            storage[j].iters = 1;
239                            storage[j].z[k] = v1[k];  //                        storage[j].z[k] = v1[k];
240                    } else {                    } else {
241                            storage[j].iters = 2;                            storage[j].iters = 2;
242                            storage[j].delta[k] = 0.0 - delta[k];                            storage[j].delta[k] = 0.0 - delta[k];
243                            if (storage[j+paral_tokens].ftmp < minf) {                            if (storage[j+paral_tokens].ftmp < minf) {
244                                    storage[j].ftmp = storage[j+paral_tokens].ftmp;                                    storage[j].ftmp = storage[j+paral_tokens].ftmp;
245                                    storage[j].z[k] = v2[k];                                    storage[j].z[k] = storage[j+paral_tokens].z[k];;
246                            }                            }
247                    }                    }
248            }            }
# Line 260  Line 258 
258                    }                    }
259            }            }
260    }    }
261      delete[] storage;
262    for (i = 0; i < nvars; ++i)    for (i = 0; i < nvars; ++i)
263      point[i] = z[i];      point[i] = z[i];
264    return minf;    return minf;
265  }  }
266  #endif  void OptInfoHooke::OptimiseLikelihoodREP() {
   
 void OptInfoHooke::OptimiseLikelihood() {  
267    
268    double oldf, newf, bestf, steplength, tmp;    double oldf, newf, bestf, steplength, tmp;
269    int    i, offset;    int    i, offset;
# Line 289  Line 285 
285    IntVector trapped(nvars, 0);    IntVector trapped(nvars, 0);
286    
287    EcoSystem->scaleVariables();    EcoSystem->scaleVariables();
 #ifndef NO_OPENMP  
288    int numThr = omp_get_max_threads ( );    int numThr = omp_get_max_threads ( );
289    for (i = 0; i < numThr; i++) // scale the variables for the ecosystem of every thread    for (i = 0; i < numThr; i++) // scale the variables for the ecosystem of every thread
290            EcoSystems[i]->scaleVariables();            EcoSystems[i]->scaleVariables();
 #endif  
291    EcoSystem->getOptScaledValues(x);    EcoSystem->getOptScaledValues(x);
292    EcoSystem->getOptLowerBounds(lowerb);    EcoSystem->getOptLowerBounds(lowerb);
293    EcoSystem->getOptUpperBounds(upperb);    EcoSystem->getOptUpperBounds(upperb);
# Line 334  Line 328 
328    
329    while (1) {    while (1) {
330      if (isZero(bestf)) {      if (isZero(bestf)) {
 #ifdef NO_OPENMP  
331        iters = EcoSystem->getFuncEval() - offset;        iters = EcoSystem->getFuncEval() - offset;
 #endif  
332        handle.logMessage(LOGINFO, "Error in Hooke & Jeeves optimisation after", iters, "function evaluations, f(x) = 0");        handle.logMessage(LOGINFO, "Error in Hooke & Jeeves optimisation after", iters, "function evaluations, f(x) = 0");
333        converge = -1;        converge = -1;
334        return;        return;
# Line 359  Line 351 
351      /* find best new point, one coord at a time */      /* find best new point, one coord at a time */
352      for (i = 0; i < nvars; i++)      for (i = 0; i < nvars; i++)
353        trialx[i] = x[i];        trialx[i] = x[i];
354  #ifndef NO_OPENMP      newf = this->bestNearbyRepro(delta, trialx, bestf, param);
     newf = this->bestNearbyOMP(delta, trialx, bestf, param);  
355      if (newf == -1) {      if (newf == -1) {
356          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
357          handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");          handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");
358          return;          return;
359      }      }
 #else  
     newf = this->bestNearby(delta, trialx, bestf, param);  
 #endif  
360      /* if too many function evaluations occur, terminate the algorithm */      /* if too many function evaluations occur, terminate the algorithm */
361    
 #ifdef NO_OPENMP  
362      iters = EcoSystem->getFuncEval() - offset;      iters = EcoSystem->getFuncEval() - offset;
 #endif  
363      if (iters > hookeiter) {      if (iters > hookeiter) {
364        handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");        handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
365        handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");        handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");
# Line 441  Line 427 
427        /* only move forward if this is really an improvement    */        /* only move forward if this is really an improvement    */
428        oldf = newf;        oldf = newf;
429        newf = EcoSystem->SimulateAndUpdate(trialx);        newf = EcoSystem->SimulateAndUpdate(trialx);
 #ifndef NO_OPENMP  
430        iters++;        iters++;
 #endif  
431        if ((isEqual(newf, oldf)) || (newf > oldf)) {        if ((isEqual(newf, oldf)) || (newf > oldf)) {
432          newf = oldf;  //JMB no improvement, so reset the value of newf          newf = oldf;  //JMB no improvement, so reset the value of newf
433          break;          break;
# Line 454  Line 438 
438        for (i = 0; i < nvars; i++)        for (i = 0; i < nvars; i++)
439          x[i] = trialx[i];          x[i] = trialx[i];
440    
441  #ifndef NO_OPENMP        newf = this->bestNearbyRepro(delta, trialx, bestf, param);
       newf = this->bestNearbyOMP(delta, trialx, bestf, param);  
442        if (newf == -1) {        if (newf == -1) {
443                  handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");                  handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
444                  handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");                  handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");
445                  return;                  return;
446            }            }
 #else  
       newf = this->bestNearby(delta, trialx, bestf, param);  
 #endif  
447        if (isEqual(newf, bestf))        if (isEqual(newf, bestf))
448          break;          break;
449    
450        /* if too many function evaluations occur, terminate the algorithm */        /* if too many function evaluations occur, terminate the algorithm */
 #ifdef NO_OPENMP  
451        iters = EcoSystem->getFuncEval() - offset;        iters = EcoSystem->getFuncEval() - offset;
 #endif  
452        if (iters > hookeiter) {        if (iters > hookeiter) {
453          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
454          handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");          handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");
# Line 485  Line 463 
463          EcoSystem->storeVariables(score, bestx);          EcoSystem->storeVariables(score, bestx);
464          return;          return;
465        }        }
466      }      } // while (newf < bestf)
467    
 #ifdef NO_OPENMP  
468      iters = EcoSystem->getFuncEval() - offset;      iters = EcoSystem->getFuncEval() - offset;
469        if (newf < bestf) {
470          for (i = 0; i < nvars; i++)
471            bestx[i] = x[i] * init[i];
472          bestf = newf;
473          handle.logMessage(LOGINFO, "\nNew optimum found after", iters, "function evaluations");
474          handle.logMessage(LOGINFO, "The likelihood score is", bestf, "at the point");
475          EcoSystem->storeVariables(bestf, bestx);
476          EcoSystem->writeBestValues();
477    
478        } else
479          handle.logMessage(LOGINFO, "Checking convergence criteria after", iters, "function evaluations ...");
480    
481        /* if the step length is less than hookeeps, terminate the algorithm */
482        if (steplength < hookeeps) {
483          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
484          handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");
485          handle.logMessage(LOGINFO, "The steplength was reduced to", steplength);
486          handle.logMessage(LOGINFO, "The optimisation stopped because an optimum was found for this run");
487    
488          converge = 1;
489          score = bestf;
490          handle.logMessage(LOGINFO, "\nHooke & Jeeves finished with a likelihood score of", score);
491          EcoSystem->storeVariables(bestf, bestx);
492          return;
493        }
494    
495        steplength *= rho;
496        handle.logMessage(LOGINFO, "Reducing the steplength to", steplength);
497        for (i = 0; i < nvars; i++)
498          delta[i] *= rho;
499      }
500    }
501  #endif  #endif
502    
503    void OptInfoHooke::OptimiseLikelihood() {
504    
505      double oldf, newf, bestf, steplength, tmp;
506      int    i, offset;
507      int    rchange, rcheck, rnumber;  //Used to randomise the order of the parameters
508    
509      handle.logMessage(LOGINFO, "\nStarting Hooke & Jeeves optimisation algorithm\n");
510      int nvars = EcoSystem->numOptVariables();
511      DoubleVector x(nvars);
512      DoubleVector trialx(nvars);
513      DoubleVector bestx(nvars);
514      DoubleVector lowerb(nvars);
515      DoubleVector upperb(nvars);
516      DoubleVector init(nvars);
517      DoubleVector initialstep(nvars, rho);
518      DoubleVector delta(nvars);
519      IntVector param(nvars, 0);
520      IntVector lbound(nvars, 0);
521      IntVector rbounds(nvars, 0);
522      IntVector trapped(nvars, 0);
523    
524      EcoSystem->scaleVariables();
525      EcoSystem->getOptScaledValues(x);
526      EcoSystem->getOptLowerBounds(lowerb);
527      EcoSystem->getOptUpperBounds(upperb);
528      EcoSystem->getOptInitialValues(init);
529    
530      for (i = 0; i < nvars; i++) {
531        // Scaling the bounds, because the parameters are scaled
532        lowerb[i] = lowerb[i] / init[i];
533        upperb[i] = upperb[i] / init[i];
534        if (lowerb[i] > upperb[i]) {
535          tmp = lowerb[i];
536          lowerb[i] = upperb[i];
537          upperb[i] = tmp;
538        }
539    
540        bestx[i] = x[i];
541        trialx[i] = x[i];
542        param[i] = i;
543        delta[i] = ((2 * (rand() % 2)) - 1) * rho;  //JMB - randomise the sign
544      }
545    
546      bestf = EcoSystem->SimulateAndUpdate(trialx);
547      if (bestf != bestf) { //check for NaN
548        handle.logMessage(LOGINFO, "Error starting Hooke & Jeeves optimisation with f(x) = infinity");
549        converge = -1;
550        iters = 1;
551        return;
552      }
553    
554      offset = EcoSystem->getFuncEval();  //number of function evaluations done before loop
555      newf = bestf;
556      oldf = bestf;
557      steplength = lambda;
558      if (isZero(steplength))
559        steplength = rho;
560    
561      iters = 0;
562    
563      while (1) {
564        if (isZero(bestf)) {
565          handle.logMessage(LOGINFO, "Error in Hooke & Jeeves optimisation after", iters, "function evaluations, f(x) = 0");
566          converge = -1;
567          return;
568        }
569    
570        /* randomize the order of the parameters once in a while */
571        rchange = 0;
572        while (rchange < nvars) {
573          rnumber = rand() % nvars;
574          rcheck = 1;
575          for (i = 0; i < rchange; i++)
576            if (param[i] == rnumber)
577              rcheck = 0;
578          if (rcheck) {
579            param[rchange] = rnumber;
580            rchange++;
581          }
582        }
583    
584        /* find best new point, one coord at a time */
585        for (i = 0; i < nvars; i++)
586          trialx[i] = x[i];
587        newf = this->bestNearby(delta, trialx, bestf, param);
588        /* if too many function evaluations occur, terminate the algorithm */
589    
590        if (iters > hookeiter) {
591          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
592          handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");
593          handle.logMessage(LOGINFO, "The steplength was reduced to", steplength);
594          handle.logMessage(LOGINFO, "The optimisation stopped because the maximum number of function evaluations");
595          handle.logMessage(LOGINFO, "was reached and NOT because an optimum was found for this run");
596    
597          score = EcoSystem->SimulateAndUpdate(trialx);
598          handle.logMessage(LOGINFO, "\nHooke & Jeeves finished with a likelihood score of", score);
599          for (i = 0; i < nvars; i++)
600            bestx[i] = trialx[i] * init[i];
601          EcoSystem->storeVariables(score, bestx);
602          return;
603        }
604    
605        /* if we made some improvements, pursue that direction */
606        while (newf < bestf) {
607          for (i = 0; i < nvars; i++) {
608            /* if it has been trapped but f has now gotten better (bndcheck) */
609            /* we assume that we are out of the trap, reset the counters     */
610            /* and go back to the stepsize we had when we got trapped        */
611            if ((trapped[i]) && (newf < oldf * bndcheck)) {
612              trapped[i] = 0;
613              lbound[i] = 0;
614              rbounds[i] = 0;
615              delta[i] = initialstep[i];
616    
617            } else if (trialx[i] < (lowerb[i] + verysmall)) {
618              lbound[i]++;
619              trialx[i] = lowerb[i];
620              if (!trapped[i]) {
621                initialstep[i] = delta[i];
622                trapped[i] = 1;
623              }
624              /* if it has hit the bounds 2 times then increase the stepsize */
625              if (lbound[i] >= 2)
626                delta[i] /= rho;
627    
628            } else if (trialx[i] > (upperb[i] - verysmall)) {
629              rbounds[i]++;
630              trialx[i] = upperb[i];
631              if (!trapped[i]) {
632                initialstep[i] = delta[i];
633                trapped[i] = 1;
634              }
635              /* if it has hit the bounds 2 times then increase the stepsize */
636              if (rbounds[i] >= 2)
637                delta[i] /= rho;
638            }
639          }
640    
641          for (i = 0; i < nvars; i++) {
642            /* firstly, arrange the sign of delta[] */
643            if (trialx[i] < x[i])
644              delta[i] = 0.0 - fabs(delta[i]);
645            else
646              delta[i] = fabs(delta[i]);
647    
648            /* now, move further in this direction  */
649            tmp = x[i];
650            x[i] = trialx[i];
651            trialx[i] = trialx[i] + trialx[i] - tmp;
652          }
653    
654          /* only move forward if this is really an improvement    */
655          oldf = newf;
656          newf = EcoSystem->SimulateAndUpdate(trialx);
657          if ((isEqual(newf, oldf)) || (newf > oldf)) {
658            newf = oldf;  //JMB no improvement, so reset the value of newf
659            break;
660          }
661    
662          /* OK, it's better, so update variables and look around  */
663          bestf = newf;
664          for (i = 0; i < nvars; i++)
665            x[i] = trialx[i];
666    
667          if (isEqual(newf, bestf))
668            break;
669    
670          /* if too many function evaluations occur, terminate the algorithm */
671          if (iters > hookeiter) {
672            handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
673            handle.logMessage(LOGINFO, "The optimisation stopped after", iters, "function evaluations");
674            handle.logMessage(LOGINFO, "The steplength was reduced to", steplength);
675            handle.logMessage(LOGINFO, "The optimisation stopped because the maximum number of function evaluations");
676            handle.logMessage(LOGINFO, "was reached and NOT because an optimum was found for this run");
677    
678            score = EcoSystem->SimulateAndUpdate(trialx);
679            handle.logMessage(LOGINFO, "\nHooke & Jeeves finished with a likelihood score of", score);
680            for (i = 0; i < nvars; i++)
681              bestx[i] = trialx[i] * init[i];
682            EcoSystem->storeVariables(score, bestx);
683            return;
684          }
685        } // while (newf < bestf)
686    
687      if (newf < bestf) {      if (newf < bestf) {
688        for (i = 0; i < nvars; i++)        for (i = 0; i < nvars; i++)
689          bestx[i] = x[i] * init[i];          bestx[i] = x[i] * init[i];
# Line 524  Line 718 
718  }  }
719    
720  /* Functions to perform the parallelization of the algorithm of HJ with OpenMP*/  /* Functions to perform the parallelization of the algorithm of HJ with OpenMP*/
721  #ifdef GADGET_OPENMP  #ifdef _OPENMP
722  double OptInfoHooke::bestNearbyOMP2(DoubleVector& delta, DoubleVector& point, double prevbest, IntVector& param) {  //#ifdef SPECULATIVE
723    double OptInfoHooke::bestNearbySpec(DoubleVector& delta, DoubleVector& point, double prevbest, IntVector& param) {
724    double minf;    double minf;
725    int i, j, k, ii;    int i, j, k, ii;
726    DoubleVector z(point);    DoubleVector z(point);
# Line 549  Line 744 
744            return -1;            return -1;
745    }    }
746    
747    //  omp_set_dynamic(0);
748    //  omp_set_nested(1); //permit the nested parallelization
749    for (ii=0; ii< paral_tokens; ii++) {    for (ii=0; ii< paral_tokens; ii++) {
750            i = 0;            i = 0;
751            while ( i < nvars) {            while ( i < nvars) {
752                    if ((i + paral_tokens -1) >= nvars)                    if ((i + paral_tokens -1) >= nvars)
753                            paral_tokens = nvars - i;                            paral_tokens = nvars - i;
754                    omp_set_dynamic(0);          #pragma omp parallel for num_threads(paral_tokens*2) private(k)
755                    omp_set_nested(1);                    for (j = 0; j < (paral_tokens*2); ++j) {
         #pragma omp parallel for num_threads(paral_tokens) private(k)  
                   for (j = 0; j < paral_tokens; ++j) {  
756                            storage[j].z = z;                            storage[j].z = z;
757                            storage[j].delta = delta;                            storage[j].delta = delta;
758                            DoubleVector v1(z);                            DoubleVector v(z);
                           DoubleVector v2(z);  
                           k = param[i+j];  
                           v1[k] +=  delta[k];  
                           v2[k] -=  delta[k];  
759    
760  #pragma omp parallel sections num_threads(2)                            if (j<paral_tokens) {
761                            {                                    k = param[i+j];
762            #pragma omp section                                    v[k] +=  delta[k];
                                   {  
                           storage[j].ftmp = EcoSystems[j]->SimulateAndUpdate(v1);  
                                   }  
           #pragma omp section  
                                   {  
                           storage[j+paral_tokens].ftmp = EcoSystems[j+paral_tokens]->SimulateAndUpdate(v2);  
763                                    }                                    }
764                              else {
765                                      k = param[i+j-paral_tokens];
766                                      v[k] -=  delta[k];
767                              }
768    
769                              storage[j].ftmp = EcoSystems[j]->SimulateAndUpdate(v);
770                              storage[j].z[k] = v[k];
771                            }                            }
772    
773                      for (j = 0; j < paral_tokens; ++j) {
774                              k = param[i+j];
775                            if (storage[j].ftmp < minf) {                            if (storage[j].ftmp < minf) {
776                                    storage[j].iters = 1;                                    storage[j].iters = 1;
777                                    storage[j].z[k] = v1[k];  //                                storage[j].z[k] = v1[k];
778                            } else {                            } else {
779                                    storage[j].iters = 2;                                    storage[j].iters = 2;
780                                    storage[j].delta[k] = 0.0 - delta[k];                                    storage[j].delta[k] = 0.0 - delta[k];
781                                    if (storage[j+paral_tokens].ftmp < minf) {                                    if (storage[j+paral_tokens].ftmp < minf) {
782                                            storage[j].ftmp = storage[j+paral_tokens].ftmp;                                            storage[j].ftmp = storage[j+paral_tokens].ftmp;
783                                            storage[j].z[k] = v2[k];                                            storage[j].z[k] = storage[j+paral_tokens].z[k];
784                                    }                                    }
785                                    else iters += 2;                                    else iters += 2;
786                            }                            }
# Line 605  Line 800 
800    
801                    i += paral_tokens;                    i += paral_tokens;
802            }            }
803              paral_tokens = numThr / 2;
804          }          }
805    
806    delete[] storage;    delete[] storage;
# Line 678  Line 874 
874    
875             while (1) {             while (1) {
876               if (isZero(bestf)) {               if (isZero(bestf)) {
877           #ifdef NO_OPENMP           #ifndef _OPENMP
878                 iters = EcoSystem->getFuncEval() - offset;                 iters = EcoSystem->getFuncEval() - offset;
879           #endif           #endif
880                 handle.logMessage(LOGINFO, "Error in Hooke & Jeeves optimisation after", iters, "function evaluations, f(x) = 0");                 handle.logMessage(LOGINFO, "Error in Hooke & Jeeves optimisation after", iters, "function evaluations, f(x) = 0");
# Line 703  Line 899 
899               /* find best new point, one coord at a time */               /* find best new point, one coord at a time */
900               for (i = 0; i < nvars; i++)               for (i = 0; i < nvars; i++)
901                 trialx[i] = x[i];                 trialx[i] = x[i];
902           #ifndef NO_OPENMP           #ifdef _OPENMP
903               newf = this->bestNearbyOMP2(delta, trialx, bestf, param);               newf = this->bestNearbySpec(delta, trialx, bestf, param);
904               if (newf == -1) {               if (newf == -1) {
905                  handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");                  handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
906                  handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");                  handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");
# Line 715  Line 911 
911           #endif           #endif
912               /* if too many function evaluations occur, terminate the algorithm */               /* if too many function evaluations occur, terminate the algorithm */
913    
914           #ifdef NO_OPENMP           #ifndef _OPENMP
915               iters = EcoSystem->getFuncEval() - offset;               iters = EcoSystem->getFuncEval() - offset;
916           #endif           #endif
917               if (iters > hookeiter) {               if (iters > hookeiter) {
# Line 785  Line 981 
981                 /* only move forward if this is really an improvement    */                 /* only move forward if this is really an improvement    */
982                 oldf = newf;                 oldf = newf;
983                 newf = EcoSystem->SimulateAndUpdate(trialx);                 newf = EcoSystem->SimulateAndUpdate(trialx);
984           #ifndef NO_OPENMP           #ifdef _OPENMP
985                 iters++;                 iters++;
986           #endif           #endif
987                 if ((isEqual(newf, oldf)) || (newf > oldf)) {                 if ((isEqual(newf, oldf)) || (newf > oldf)) {
# Line 798  Line 994 
994                 for (i = 0; i < nvars; i++)                 for (i = 0; i < nvars; i++)
995                   x[i] = trialx[i];                   x[i] = trialx[i];
996    
997           #ifndef NO_OPENMP           #ifdef _OPENMP
998                 newf = this->bestNearbyOMP2(delta, trialx, bestf, param);                 newf = this->bestNearbySpec(delta, trialx, bestf, param);
999                 if (newf == -1) {                 if (newf == -1) {
1000                          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");                          handle.logMessage(LOGINFO, "\nStopping Hooke & Jeeves optimisation algorithm\n");
1001                          handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");                          handle.logMessage(LOGINFO, "\nThe number of threads must be a multiple of 2\n");
# Line 812  Line 1008 
1008                   break;                   break;
1009    
1010                 /* if too many function evaluations occur, terminate the algorithm */                 /* if too many function evaluations occur, terminate the algorithm */
1011           #ifdef NO_OPENMP           #ifndef _OPENMP
1012                 iters = EcoSystem->getFuncEval() - offset;                 iters = EcoSystem->getFuncEval() - offset;
1013           #endif           #endif
1014                 if (iters > hookeiter) {                 if (iters > hookeiter) {
# Line 831  Line 1027 
1027                 }                 }
1028               }               }
1029    
1030           #ifdef NO_OPENMP           #ifndef _OPENMP
1031               iters = EcoSystem->getFuncEval() - offset;               iters = EcoSystem->getFuncEval() - offset;
1032           #endif           #endif
1033               if (newf < bestf) {               if (newf < bestf) {
# Line 866  Line 1062 
1062                 delta[i] *= rho;                 delta[i] *= rho;
1063             }             }
1064    }    }
1065    //#endif
1066  #endif  #endif

Legend:
Removed from v.14  
changed lines
  Added in v.20

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge