Changeset 23252


Ignore:
Timestamp:
09/11/18 09:51:31 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: compile the code with CoDiPack in

Location:
issm/trunk-jpl/src/c
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/Makefile.am

    r23241 r23252  
    5151                                         ./modules/BamgTriangulatex/BamgTriangulatex.cpp
    5252
    53 #do not include AmrBamg with ADOLC
     53#do not include AmrBamg with AD
    5454if ADOLC
    5555else
     56if CODIPACK
     57else
    5658issm_sources += ./classes/AmrBamg.cpp
     59endif
    5760endif
    5861endif
  • TabularUnified issm/trunk-jpl/src/c/classes/FemModel.cpp

    r23251 r23252  
    25452545
    25462546/*AMR*/
    2547 #if !defined(_HAVE_ADOLC_)
     2547#ifndef _HAVE_AD_
    25482548void FemModel::ReMesh(void){/*{{{*/
    25492549
  • TabularUnified issm/trunk-jpl/src/c/classes/IoModel.cpp

    r23251 r23252  
    26352635                tape_codi.registerInput(y_t);
    26362636                int codi_allocn = 0;
    2637                 this->FetchData(&codi_allocn, AutodiffTapeAllocEnum);
     2637                this->FetchData(&codi_allocn,"md.autodiff.tapeAlloc");
    26382638                for(int i = 0;i < codi_allocn;++i) {
    26392639                        x_t = y_t * y_t;
  • TabularUnified issm/trunk-jpl/src/c/cores/controlm1qn3_core.cpp

    r22828 r23252  
    1111#include "../solutionsequences/solutionsequences.h"
    1212
    13 #if defined (_HAVE_M1QN3_) && !defined(_HAVE_ADOLC_)
     13#if defined (_HAVE_M1QN3_) && !defined(_HAVE_AD_)
    1414/*m1qn3 prototypes*/
    1515extern "C" void *ctonbe_; // DIS mode : Conversion
  • TabularUnified issm/trunk-jpl/src/c/cores/transient_core.cpp

    r23232 r23252  
    7070        if(numoutputs) femmodel->parameters->FindParam(&requested_outputs,&numoutputs,TransientRequestedOutputsEnum);
    7171
    72         #if defined(_HAVE_BAMG_) && !defined(_HAVE_ADOLC_)
     72        #if defined(_HAVE_BAMG_) && !defined(_HAVE_AD_)
    7373        if(amr_frequency){
    7474                femmodel->parameters->FindParam(&amr_restart,AmrRestartEnum);
     
    7878
    7979        if(isoceancoupling){ /*{{{*/
    80                 #ifndef _HAVE_ADOLC_
     80                #ifndef _HAVE_AD_
    8181                if(VerboseSolution()) _printf0_("   ocean coupling: initialization \n");
    8282                int my_rank;
     
    247247                if(isoceancoupling){ /*{{{*/
    248248
    249                         #ifndef _HAVE_ADOLC_
     249                        #ifndef _HAVE_AD_
    250250                        if(VerboseSolution()) _printf0_("   ocean coupling: exchanging information\n");
    251251                        int my_rank;
     
    460460                if(amr_frequency){
    461461
    462                         #if !defined(_HAVE_ADOLC_)
     462                        #if !defined(_HAVE_AD_)
    463463                        if(save_results) femmodel->WriteMeshInResults();
    464464                        if(step%amr_frequency==0 && time<finaltime){
     
    468468
    469469                        #else
    470                         _error_("AMR not suppored with ADOLC");
     470                        _error_("AMR not suppored with AD");
    471471                        #endif
    472472                }
  • TabularUnified issm/trunk-jpl/src/c/modules/GetVectorFromControlInputsx/GetVectorFromControlInputsx.cpp

    r23066 r23252  
    9494
    9595/*For autodiff, we sometimes need to cast our vectors to passive*/
    96 #ifdef _HAVE_ADOLC_
     96#ifdef _HAVE_AD_
    9797void GetPassiveVectorFromControlInputsx(Vector<IssmPDouble>** pvector, Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads, Materials* materials, Parameters* parameters,const char* data){/*{{{*/
    9898
  • TabularUnified issm/trunk-jpl/src/c/modules/ModelProcessorx/Autodiff/CreateParametersAutodiff.cpp

    r23242 r23252  
    7777                /*initialize a placeholder to store solver pointers: {{{*/
    7878                /*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);
    8182
    8283                switch(IssmSolverTypeFromToolkitOptions()){
Note: See TracChangeset for help on using the changeset viewer.