Changeset 23252
- Timestamp:
- 09/11/18 09:51:31 (7 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/Makefile.am ¶
r23241 r23252 51 51 ./modules/BamgTriangulatex/BamgTriangulatex.cpp 52 52 53 #do not include AmrBamg with AD OLC53 #do not include AmrBamg with AD 54 54 if ADOLC 55 55 else 56 if CODIPACK 57 else 56 58 issm_sources += ./classes/AmrBamg.cpp 59 endif 57 60 endif 58 61 endif -
TabularUnified issm/trunk-jpl/src/c/classes/FemModel.cpp ¶
r23251 r23252 2545 2545 2546 2546 /*AMR*/ 2547 #if !defined(_HAVE_ADOLC_)2547 #ifndef _HAVE_AD_ 2548 2548 void FemModel::ReMesh(void){/*{{{*/ 2549 2549 -
TabularUnified issm/trunk-jpl/src/c/classes/IoModel.cpp ¶
r23251 r23252 2635 2635 tape_codi.registerInput(y_t); 2636 2636 int codi_allocn = 0; 2637 this->FetchData(&codi_allocn, AutodiffTapeAllocEnum);2637 this->FetchData(&codi_allocn,"md.autodiff.tapeAlloc"); 2638 2638 for(int i = 0;i < codi_allocn;++i) { 2639 2639 x_t = y_t * y_t; -
TabularUnified issm/trunk-jpl/src/c/cores/controlm1qn3_core.cpp ¶
r22828 r23252 11 11 #include "../solutionsequences/solutionsequences.h" 12 12 13 #if defined (_HAVE_M1QN3_) && !defined(_HAVE_AD OLC_)13 #if defined (_HAVE_M1QN3_) && !defined(_HAVE_AD_) 14 14 /*m1qn3 prototypes*/ 15 15 extern "C" void *ctonbe_; // DIS mode : Conversion -
TabularUnified issm/trunk-jpl/src/c/cores/transient_core.cpp ¶
r23232 r23252 70 70 if(numoutputs) femmodel->parameters->FindParam(&requested_outputs,&numoutputs,TransientRequestedOutputsEnum); 71 71 72 #if defined(_HAVE_BAMG_) && !defined(_HAVE_AD OLC_)72 #if defined(_HAVE_BAMG_) && !defined(_HAVE_AD_) 73 73 if(amr_frequency){ 74 74 femmodel->parameters->FindParam(&amr_restart,AmrRestartEnum); … … 78 78 79 79 if(isoceancoupling){ /*{{{*/ 80 #ifndef _HAVE_AD OLC_80 #ifndef _HAVE_AD_ 81 81 if(VerboseSolution()) _printf0_(" ocean coupling: initialization \n"); 82 82 int my_rank; … … 247 247 if(isoceancoupling){ /*{{{*/ 248 248 249 #ifndef _HAVE_AD OLC_249 #ifndef _HAVE_AD_ 250 250 if(VerboseSolution()) _printf0_(" ocean coupling: exchanging information\n"); 251 251 int my_rank; … … 460 460 if(amr_frequency){ 461 461 462 #if !defined(_HAVE_AD OLC_)462 #if !defined(_HAVE_AD_) 463 463 if(save_results) femmodel->WriteMeshInResults(); 464 464 if(step%amr_frequency==0 && time<finaltime){ … … 468 468 469 469 #else 470 _error_("AMR not suppored with AD OLC");470 _error_("AMR not suppored with AD"); 471 471 #endif 472 472 } -
TabularUnified issm/trunk-jpl/src/c/modules/GetVectorFromControlInputsx/GetVectorFromControlInputsx.cpp ¶
r23066 r23252 94 94 95 95 /*For autodiff, we sometimes need to cast our vectors to passive*/ 96 #ifdef _HAVE_AD OLC_96 #ifdef _HAVE_AD_ 97 97 void GetPassiveVectorFromControlInputsx(Vector<IssmPDouble>** pvector, Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters,const char* data){/*{{{*/ 98 98 -
TabularUnified issm/trunk-jpl/src/c/modules/ModelProcessorx/Autodiff/CreateParametersAutodiff.cpp ¶
r23242 r23252 77 77 /*initialize a placeholder to store solver pointers: {{{*/ 78 78 /*Solver pointers depend on what type of solver we are implementing: */ 79 options=OptionsFromAnalysis(parameters,DefaultAnalysisEnum); //options database is not filled in yet, use default. 80 ToolkitOptions::Init(options); 79 options=OptionsFromAnalysis(&toolkit,parameters,DefaultAnalysisEnum); 80 ToolkitOptions::Init(toolkit,options); 81 xDelete<char>(toolkit); 81 82 82 83 switch(IssmSolverTypeFromToolkitOptions()){
Note:
See TracChangeset
for help on using the changeset viewer.