Changeset 21449


Ignore:
Timestamp:
12/22/16 10:39:50 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: keep track of all cost functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/cores/controlm1qn3_core.cpp

    r19709 r21449  
    2626void simul(long* indic,long* n,double* X,double* pf,double* G,long izs[1],float rzs[1],void* dzs);
    2727
     28/*Use struct to provide arguments*/
     29typedef struct{
     30        FemModel  * femmodel;
     31        IssmDouble* Jlist;
     32        int         M;
     33        int         N;
     34        int*        i;
     35} m1qn3_struct;
     36
    2837void controlm1qn3_core(FemModel* femmodel){
    2938
     
    3241        double       f,dxmin,gttol;
    3342        int          maxsteps,maxiter;
    34         int          intn,numberofvertices,num_controls,solution_type;
     43        int          intn,numberofvertices,num_controls,num_cost_functions,solution_type;
    3544        IssmDouble  *scaling_factors = NULL;
    3645        IssmDouble  *X  = NULL;
     
    4049        femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum);
    4150        femmodel->parameters->FindParam(&num_controls,InversionNumControlParametersEnum);
     51        femmodel->parameters->FindParam(&num_cost_functions,InversionNumCostFunctionsEnum);
    4252        femmodel->parameters->FindParam(&maxsteps,InversionMaxstepsEnum);
    4353        femmodel->parameters->FindParam(&maxiter,InversionMaxiterEnum);
     
    8696        }
    8797
    88         /*Allocate m1qn3 working arrays (see doc)*/
     98        /*Allocate m1qn3 working arrays (see documentation)*/
    8999        long      m   = 100;
    90100        long      ndz = 4*n+m*(2*n+1);
     
    96106        _printf0_("____________________________________________________________________\n");
    97107
     108        /*Prepare structure for m1qn3*/
     109        m1qn3_struct mystruct;
     110        mystruct.femmodel = femmodel;
     111        mystruct.M        = maxiter;
     112        mystruct.N        = num_cost_functions+1;
     113        mystruct.Jlist    = xNewZeroInit<IssmDouble>(mystruct.M*mystruct.N);
     114        mystruct.i        = xNewZeroInit<int>(1);
     115
    98116        /*Initialize Gradient and cost function of M1QN3*/
    99         indic = 4; //adjoint and gradient required
    100         simul(&indic,&n,X,&f,G,izs,rzs,(void*)femmodel);
     117        indic = 4; /*gradient required*/
     118        simul(&indic,&n,X,&f,G,izs,rzs,(void*)&mystruct);
    101119
    102120        /*Estimation of the expected decrease in f during the first iteration*/
     
    107125                                &n,X,&f,G,&dxmin,&df1,
    108126                                &gttol,normtype,&impres,&io,imode,&omode,&niter,&nsim,iz,dz,&ndz,
    109                                 &reverse,&indic,izs,rzs,(void*)femmodel);
     127                                &reverse,&indic,izs,rzs,(void*)&mystruct);
    110128
    111129        switch(int(omode)){
     
    137155        ControlInputSetGradientx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,G);
    138156        femmodel->OutputControlsx(&femmodel->results);
    139         femmodel->results->AddObject(new GenericExternalResult<double>(femmodel->results->Size()+1,JEnum,f));
     157        femmodel->results->AddObject(new GenericExternalResult<double*>(femmodel->results->Size()+1,JEnum,mystruct.Jlist,mystruct.M,mystruct.N,0,0));
    140158
    141159        /*Finalize*/
     
    153171        xDelete<double>(XL);
    154172        xDelete<double>(scaling_factors);
     173        xDelete<double>(mystruct.Jlist);
     174        xDelete<int>(mystruct.i);
    155175}
    156176
     
    158178void simul(long* indic,long* n,double* X,double* pf,double* G,long izs[1],float rzs[1],void* dzs){
    159179
    160         /*Recover Femmodel*/
    161         int         solution_type;
    162         FemModel   *femmodel  = (FemModel*)dzs;
    163 
    164         /*Recover number of cost functions responses*/
    165         int num_responses,num_controls,numberofvertices;
     180        /*Recover Arguments*/
     181        m1qn3_struct *input_struct = (m1qn3_struct*)dzs;
     182        FemModel     *femmodel     = input_struct->femmodel;
     183        IssmDouble   *Jlist        = input_struct->Jlist;
     184        int           JlistM       = input_struct->M;
     185        int           JlistN       = input_struct->N;
     186        int          *Jlisti       = input_struct->i;
     187
     188        /*Recover some parameters*/
     189        int num_responses,num_controls,numberofvertices,solution_type;
    166190        IssmDouble* scaling_factors = NULL;
    167191        femmodel->parameters->FindParam(&num_responses,InversionNumCostFunctionsEnum);
    168192        femmodel->parameters->FindParam(&num_controls,InversionNumControlParametersEnum);
    169193        femmodel->parameters->FindParam(&scaling_factors,NULL,InversionControlScalingFactorsEnum);
     194        femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum);
    170195        numberofvertices=femmodel->vertices->NumberOfVertices();
    171196
    172         /*Constrain input vector*/
     197        /*Constrain input vector and update controls*/
    173198        IssmDouble  *XL = NULL;
    174199        IssmDouble  *XU = NULL;
     
    183208                }
    184209        }
    185 
    186         /*Update control input*/
    187210        SetControlInputsFromVectorx(femmodel,X);
    188 
    189         /*Recover some parameters*/
    190         femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum);
    191211
    192212        /*Compute solution and adjoint*/
     
    196216        solutioncore(femmodel);
    197217
     218        /*Check size of Jlist to avoid crashes*/
     219        _assert_((*Jlisti)<JlistM);
     220        _assert_(JlistN==num_responses+1);
     221
    198222        /*Compute objective function*/
    199         IssmDouble* Jlist = NULL;
    200         femmodel->CostFunctionx(pf,&Jlist,NULL);
     223        IssmDouble* Jtemp = NULL;
     224        femmodel->CostFunctionx(pf,&Jtemp,NULL);
    201225        _printf0_("f(x) = "<<setw(12)<<setprecision(7)<<*pf<<"  |  ");
     226
     227        /*Record cost function values and delete Jtemp*/
     228        for(int i=0;i<num_responses;i++) Jlist[(*Jlisti)*JlistN+i] = Jtemp[i];
     229        Jlist[(*Jlisti)*JlistN+num_responses] = *pf;
     230        xDelete<IssmDouble>(Jtemp);
    202231
    203232        if(*indic==0){
     
    206235                /*Retrieve objective functions independently*/
    207236                _printf0_("            N/A |\n");
    208                 for(int i=0;i<num_responses;i++) _printf0_(" "<<setw(12)<<setprecision(7)<<Jlist[i]);
     237                for(int i=0;i<num_responses;i++) _printf0_(" "<<setw(12)<<setprecision(7)<<Jlist[(*Jlisti)*JlistN+i]);
    209238                _printf0_("\n");
    210239
    211                 xDelete<IssmDouble>(Jlist);
     240                *Jlisti = (*Jlisti) +1;
    212241                xDelete<IssmDouble>(XU);
    213242                xDelete<IssmDouble>(XL);
     
    241270        /*Print info*/
    242271        _printf0_("       "<<setw(12)<<setprecision(7)<<Gnorm<<" |");
    243         for(int i=0;i<num_responses;i++) _printf0_(" "<<setw(12)<<setprecision(7)<<Jlist[i]);
     272        for(int i=0;i<num_responses;i++) _printf0_(" "<<setw(12)<<setprecision(7)<<Jlist[(*Jlisti)*JlistN+i]);
    244273        _printf0_("\n");
    245274
    246275        /*Clean-up and return*/
    247         xDelete<IssmDouble>(Jlist);
     276        *Jlisti = (*Jlisti) +1;
    248277        xDelete<IssmDouble>(XU);
    249278        xDelete<IssmDouble>(XL);
Note: See TracChangeset for help on using the changeset viewer.