Changeset 17899
- Timestamp:
- 04/30/14 16:12:35 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/cores/controlm1qn3_core.cpp
r17897 r17899 3 3 */ 4 4 5 #include <config.h> 5 6 #include "./cores.h" 6 7 #include "../toolkits/toolkits.h" … … 15 16 extern "C" void *ctcabe_; // DIS mode : Conversion 16 17 extern "C" void *euclid_; // Scalar product 17 typedef void (*SimulFunc) (long* , long *, double [], double *, double [], long [], float [], double []);18 extern "C" void m1qn3_ (void f(long* , long *, double [], double *, double [], long [], float [], double []),18 typedef void (*SimulFunc) (long* indic,long* n, double* x, double* pf,double* g,long [],float [],void* dzs); 19 extern "C" void m1qn3_ (void f(long* indic,long* n, double* x, double* pf,double* g,long [],float [],void* dzs), 19 20 void **, void **, void **, 20 21 long *, double [], double *, double [], double*, double *, 21 22 double *, char [], long *, long *, long *, long *, long *, long *, long [], double [], long *, 22 long *, long *, long [], float [], double [] 23 ); 23 long *, long *, long [], float [],void* ); 24 24 25 void simul(long* indic,long* n,double x[2],double* f,double g[2],long izs[1],float rzs[1],double dzs[1]){ 26 /*minimization of x^2+cy^4 where c>0 is a parameter*/ 27 double c=dzs[0]; 28 *f=x[0]*x[0]+c*x[1]*x[1]*x[1]*x[1]; 29 g[0]=2.*x[0]; 30 g[1]=4.*c*x[1]*x[1]*x[1]; 31 } 25 /*Cost function prototype*/ 26 void simul(long* indic,long* n,double* X,double* pf,double* G,long izs[1],float rzs[1],void* dzs); 32 27 33 28 void controlm1qn3_core(FemModel* femmodel){ 34 29 35 30 /*Intermediaries*/ 36 long omode; /*m1qn3 output flag*/ 37 double f; /*cost function value*/ 31 long omode; 32 double f; 33 int nsteps,maxiter; 34 int intn,num_controls,solution_type; 35 IssmDouble *X = NULL; 36 IssmDouble *G = NULL; 37 IssmDouble *XL = NULL; 38 IssmDouble *XU = NULL; 38 39 40 /*Recover some parameters*/ 41 femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum); 42 femmodel->parameters->FindParam(&num_controls,InversionNumControlParametersEnum); 43 femmodel->parameters->FindParam(&nsteps,InversionNstepsEnum); 44 femmodel->parameters->SetParam(false,SaveResultsEnum); 45 maxiter=nsteps*10; 46 47 /*Initialize M1QN3 parameters*/ 39 48 if(VerboseControl())_printf0_(" Initialize M1QN3 parameters\n"); 40 49 SimulFunc costfuncion = &simul; /*Cost function address*/ 41 50 void** prosca = &euclid_; /*Dot product function (euclid is the default)*/ 42 51 char normtype[3]; /*Norm type: dfn = scalar product defined by prosca*/ strcpy(normtype, "dfn"); 43 double dzs[1]; /*Arrays used by m1qn3 subroutines*/44 52 long izs[5]; /*Arrays used by m1qn3 subroutines*/ 53 long iz[5]; /*Integer m1qn3 working array of size 5*/ 45 54 float rzs[1]; /*Arrays used by m1qn3 subroutines*/ 46 55 long impres = 0; /*verbosity level*/ … … 48 57 long indic = 4; /*compute f and g*/ 49 58 long reverse = 0; /*reverse or direct mode*/ 50 long iz[5]; /*Integer m1qn3 working array of size 5*/51 59 long io = 6; /*Channel number for the output*/ 52 60 53 61 /*Optimization criterions*/ 54 double dxmin = 1.e-10; /*Resolution for the solution x*/ 55 double epsrel = 1.e-5; /*Gradient stopping criterion in ]0 1[ -> |gk|/|g1| < epsrel*/ 56 long niter = 200; /*Maximum number of iterations*/ 57 long nsim = 200; /*Maximum number of function calls*/ 62 double dxmin = 1.e-1; /*Resolution for the solution x*/ 63 double epsrel = 1.e-4; /*Gradient stopping criterion in ]0 1[ -> |gk|/|g1| < epsrel*/ 64 long niter = long(nsteps); /*Maximum number of iterations*/ 65 long nsim = long(maxiter);/*Maximum number of function calls*/ 66 67 /*Get initial guess*/ 68 Vector<IssmDouble> *Xpetsc = NULL; 69 GetVectorFromControlInputsx(&Xpetsc,femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,"value"); 70 X = Xpetsc->ToMPISerial(); 71 Xpetsc->GetSize(&intn); 72 delete Xpetsc; 58 73 59 74 /*Get problem dimension and initialize gradient and initial guess*/ 60 long n = 2; 61 double* g = xNew<double>(n); 62 double* x = xNew<double>(n); 63 for(int i=0;i<n;i++) x[i]=5.; 64 dzs[0] = 10; //c = 10 function parameter 75 long n = long(intn); 76 G = xNew<double>(n); 65 77 66 78 /*Allocate m1qn3 working arrays (see doc)*/ … … 70 82 71 83 if(VerboseControl())_printf0_(" Computing initial solution\n"); 72 simul(&indic,&n,x,&f,g,izs,rzs,&dzs[0]); 84 _printf0_("\n"); 85 _printf0_("Cost function f(x) | List of contributions\n"); 86 _printf0_("_____________________________________________\n"); 87 indic = 0; //no adjoint required 88 simul(&indic,&n,X,&f,G,izs,rzs,(void*)femmodel); 73 89 double f1=f; 74 90 91 indic = 4; //adjoint and gradient required 75 92 m1qn3_(costfuncion,prosca,&ctonbe_,&ctcabe_, 76 &n, x,&f,g,&dxmin,&f1,93 &n,X,&f,G,&dxmin,&f1, 77 94 &epsrel,normtype,&impres,&io,imode,&omode,&niter,&nsim,iz,dz,&ndz, 78 &reverse,&indic,izs,rzs, dzs);95 &reverse,&indic,izs,rzs,(void*)femmodel); 79 96 80 97 switch(int(omode)){ … … 90 107 } 91 108 92 _printf0_(" == Final cost function = "<< f <<"\n"); 93 //_printf0_(" == Final x = ["<<x[0]<<" "<<x[1]<<"]\n"); 109 /*Get solution*/ 110 SetControlInputsFromVectorx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,X); 111 ControlInputSetGradientx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,G); 112 femmodel->OutputControlsx(&femmodel->results); 113 femmodel->results->AddObject(new GenericExternalResult<double>(JEnum,f,1,0)); 114 115 /*Finalize*/ 116 if(VerboseControl()) _printf0_(" preparing final solution\n"); 117 femmodel->parameters->SetParam(true,SaveResultsEnum); 118 void (*solutioncore)(FemModel*)=NULL; 119 CorePointerFromSolutionEnum(&solutioncore,femmodel->parameters,solution_type); 120 solutioncore(femmodel); 94 121 95 122 /*Clean-up and return*/ 96 xDelete<double>( g);97 xDelete<double>( x);123 xDelete<double>(G); 124 xDelete<double>(X); 98 125 xDelete<double>(dz); 99 126 } 127 128 /*Cost function definition*/ 129 void simul(long* indic,long* n,double* X,double* pf,double* G,long izs[1],float rzs[1],void* dzs){ 130 131 /*Recover Femmodel*/ 132 double f; 133 int intn,solution_type; 134 FemModel *femmodel = (FemModel*)dzs; 135 136 /*Recover responses*/ 137 int num_responses; 138 int *responses = NULL; 139 femmodel->parameters->FindParam(&responses,&num_responses,InversionCostFunctionsEnum); 140 141 /*Update control input*/ 142 SetControlInputsFromVectorx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,X); 143 144 /*Recover some parameters*/ 145 femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum); 146 147 /*Compute solution and adjoint*/ 148 void (*solutioncore)(FemModel*)=NULL; 149 void (*adjointcore)(FemModel*)=NULL; 150 CorePointerFromSolutionEnum(&solutioncore,femmodel->parameters,solution_type); 151 solutioncore(femmodel); 152 153 /*Compute objective function*/ 154 femmodel->CostFunctionx(pf); 155 _printf0_("f(x) = "<<setw(12)<<setprecision(7)<<*pf<<" | "); 156 157 /*Retrieve objective functions independently*/ 158 for(int i=0;i<num_responses;i++){ 159 femmodel->Responsex(&f,EnumToStringx(responses[i])); 160 _printf0_(" "<<setw(12)<<setprecision(7)<<f); 161 } 162 _printf0_("\n"); 163 164 if(indic==0) return; /*dry run, no gradient required*/ 165 166 /*Compute Adjoint*/ 167 AdjointCorePointerFromSolutionEnum(&adjointcore,solution_type); 168 adjointcore(femmodel); 169 170 /*Compute gradient*/ 171 IssmDouble* G2 = NULL; 172 Gradjx(&G2,NULL,femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters); 173 for(long i=0;i<*n;i++) G[i] = -G2[i]; 174 175 /*Clean-up and return*/ 176 xDelete<int>(responses); 177 xDelete<IssmDouble>(G2); 178 } 179 100 180 #else 101 181 void controlm1qn3_core(FemModel* femmodel){ 102 182 _error_("M1QN3 not installed"); 103 183 } 104 #endif //_HAVE_ TAO_184 #endif //_HAVE_M1QN3_ -
issm/trunk-jpl/src/c/modules/Gradjx/Gradjx.cpp
r16167 r17899 66 66 xDelete<int>(control_type); 67 67 } 68 void Gradjx(IssmDouble** pgradient,IssmDouble** pnorm_list, Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters){ 69 70 /*output: */ 71 IssmDouble* gradient=NULL; 72 73 /*intermediary: */ 74 Vector<IssmDouble>* vec_gradient=NULL; 75 76 Gradjx(&vec_gradient,pnorm_list,elements,nodes, vertices,loads,materials,parameters); 77 gradient=vec_gradient->ToMPISerial(); 78 79 /*Free ressources:*/ 80 delete vec_gradient; 81 82 /*Assign output pointers:*/ 83 *pgradient=gradient; 84 } -
issm/trunk-jpl/src/c/modules/Gradjx/Gradjx.h
r15000 r17899 10 10 /* local prototypes: */ 11 11 void Gradjx(Vector<IssmDouble>** pgrad_g,IssmDouble** pgrad_norm,Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials,Parameters* parameters); 12 void Gradjx(IssmDouble** pgrad_g,IssmDouble** pgrad_norm,Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials,Parameters* parameters); 12 13 13 14 #endif /* _GRADJX_H */
Note:
See TracChangeset
for help on using the changeset viewer.