Changeset 26433


Ignore:
Timestamp:
09/06/21 17:31:41 (4 years ago)
Author:
Mathieu Morlighem
Message:

CHG: transitioning to CoDiPack v2.0

Location:
issm/trunk-jpl/src/c/toolkits
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/codipack/CoDiPackCommon.hpp

    r26432 r26433  
    5555template<typename Real, typename Data>
    5656inline void registerVector(Real* vec, Data* dataVec, int n) {
    57   typename Real::TapeType& tape = Real::getTape();
     57  typename Real::Tape& tape = Real::getTape();
    5858
    5959  for(int i = 0; i < n; ++i) {
  • issm/trunk-jpl/src/c/toolkits/gsl/DenseGslSolve.cpp

    r26432 r26433  
    254254
    255255#ifdef _HAVE_CODIPACK_
    256 void SolverxSeq_codi_b(void* tape_in,void* data_in,void* ra) {/*{{{*/
     256using Tape = typename IssmDouble::Tape;
     257using AccessInterface = codi::VectorAccessInterface<typename Tape::Real, typename Tape::Identifier>;
     258void SolverxSeq_codi_b(Tape* tape,void* data_in, AccessInterface* ra) {/*{{{*/
    257259
    258260        /*recast data_in and tape*/
    259         codi::DataStore* data = (codi::DataStore*)data_in;
    260         //IssmDouble::Tape& tape = (IssmDouble::Tape&)tape_in;
    261         IssmDouble::Tape& tape = IssmDouble::getTape();
     261        codi::ExternalFunctionUserData* data = (codi::ExternalFunctionUserData*)data_in;
    262262
    263263  IssmDouble::Real* valueATrans;
    264   IssmDouble::GradientData* indexATrans;
    265   IssmDouble::GradientData* indexB;
     264  IssmDouble::Identifier* indexATrans;
     265  IssmDouble::Identifier* indexB;
    266266  IssmDouble::Real* valueX;
    267   IssmDouble::GradientData* indexX;
     267  IssmDouble::Identifier* indexX;
    268268  int n;
    269269
     
    275275  data->getData(n);
    276276
    277 
    278277  // create the adjoint vector for x and reset the adjoint values on the tape
    279278  IssmDouble::Gradient* adjX = xNew<IssmDouble::Gradient>(n);
    280   getVectorAdjoint(tape, indexX, adjX, n);
     279  getVectorAdjoint(*tape, indexX, adjX, n);
    281280
    282281  IssmDouble::Gradient* sol  = xNew<IssmDouble::Gradient>(n);
    283282  SolverxSeq(sol, valueATrans, adjX, n);
    284283
    285   updateVectorAdjoint(tape, indexB, sol, n);
     284  updateVectorAdjoint(*tape, indexB, sol, n);
    286285  for(int i=0; i<n; ++i) {
    287286    for (int j=0; j<n; ++j) {
    288287      // we access the transposed matrix here because we stored the indices in a transposed way
    289       updateAdjoint(tape, indexATrans[i*n+j], -sol[j]*valueX[i]);
     288      updateAdjoint(*tape, indexATrans[i*n+j], -sol[j]*valueX[i]);
    290289    }
    291290  }
     
    295294}
    296295/*}}}*/
    297 void SolverxSeq_codi_delete(void* tape_in,void* data_in) {/*{{{*/
     296void SolverxSeq_codi_delete(Tape* tape,void* data_in) {/*{{{*/
    298297
    299298        /*recast data_in*/
    300         codi::DataStore* data = (codi::DataStore*)data_in;
     299        codi::ExternalFunctionUserData* data = (codi::ExternalFunctionUserData*)data_in;
    301300
    302301  IssmDouble::Real* valueATrans;
    303   IssmDouble::GradientData* indexATrans;
    304   IssmDouble::GradientData* indexB;
     302  IssmDouble::Identifier* indexATrans;
     303  IssmDouble::Identifier* indexB;
    305304  IssmDouble::Real* valueX;
    306   IssmDouble::GradientData* indexX;
     305  IssmDouble::Identifier* indexX;
    307306  int n;
    308307
     
    325324void SolverxSeq(IssmDouble *X,IssmDouble *A,IssmDouble *B,int n, Parameters* parameters){/*{{{*/
    326325  IssmDouble::Tape& tape = IssmDouble::getTape();
    327   codi::DataStore* dataHandler = NULL;
     326  codi::ExternalFunctionUserData* dataHandler = NULL;
    328327
    329328  if(tape.isActive()) {
    330     dataHandler = new codi::DataStore();
     329    dataHandler = new codi::ExternalFunctionUserData();
    331330
    332331    // create the index vector and the double data for A and B
    333332    IssmDouble::Real* valueATrans = xNew<IssmDouble::Real>(n*n);
    334     IssmDouble::GradientData* indexATrans = xNew<IssmDouble::GradientData>(n*n);
     333    IssmDouble::Identifier* indexATrans = xNew<IssmDouble::Identifier>(n*n);
    335334
    336335    // read the data for matrix in a transposed fashion
     
    342341
    343342    // read the data from B (primal values are not required vor B
    344     IssmDouble::GradientData* indexB = xNew<IssmDouble::GradientData>(n);
     343    IssmDouble::Identifier* indexB = xNew<IssmDouble::Identifier>(n);
    345344    getVectorGradData(B, indexB, n);
    346345
     
    366365  if(tape.isActive()) {
    367366    // create the index vector X and register x as active variables
    368     IssmDouble::GradientData* indexX = xNew<IssmDouble::GradientData>(n);
     367    IssmDouble::Identifier* indexX = xNew<IssmDouble::Identifier>(n);
    369368    registerVector(X, indexX, n);
    370369
     
    375374    dataHandler->addData(n);
    376375
    377     tape.pushExternalFunctionHandle(&SolverxSeq_codi_b, dataHandler, &SolverxSeq_codi_delete);
     376         tape.pushExternalFunction(codi::ExternalFunction<Tape>::create(&SolverxSeq_codi_b,(void*)dataHandler, &SolverxSeq_codi_delete));
    378377  }
    379378  else{
  • issm/trunk-jpl/src/c/toolkits/mumps/MumpsSolve.cpp

    r26432 r26433  
    485485
    486486#ifdef _HAVE_CODIPACK_
    487 void MumpsSolve_codi_b(void* tape_in,void* data_in,void* ra) {/*{{{*/
     487using Tape = typename IssmDouble::Tape;
     488using AccessInterface = codi::VectorAccessInterface<typename Tape::Real, typename Tape::Identifier>;
     489
     490void MumpsSolve_codi_b(Tape* tape, void* data_in, AccessInterface* ra) {/*{{{*/
    488491
    489492        /*recast data_in and tape*/
    490   codi::DataStore* data = (codi::DataStore*)data_in;
    491   //IssmDouble::Tape& tape = (IssmDouble::Tape&)tape_in;
    492   IssmDouble::Tape& tape = IssmDouble::getTape();
    493 
     493  codi::ExternalFunctionUserData* data = (codi::ExternalFunctionUserData*)data_in;
    494494
    495495  IssmDouble::Real* valueATrans;
    496   IssmDouble::GradientData* indexATrans;
     496  IssmDouble::Identifier* indexATrans;
    497497  int* irnATrans;
    498498  int* jcnATrans;
    499   IssmDouble::GradientData* indexB;
     499  IssmDouble::Identifier* indexB;
    500500  IssmDouble::Real* valueX;
    501   IssmDouble::GradientData* indexX;
     501  IssmDouble::Identifier* indexX;
    502502  int n;
    503503  int nnz;
     
    519519  // create the adjoint vector for x and reset the adjoint values on the tape
    520520  IssmDouble::Gradient* adjX = xNew<IssmDouble::Gradient>(n);
    521   getVectorAdjoint(tape, indexX, adjX, n);
     521  getVectorAdjoint(*tape, indexX, adjX, n);
    522522
    523523  MumpsSolve(n, nnz, local_nnz, irnATrans, jcnATrans, valueATrans, adjX, parameters);
    524524  // adjX contains now the solution
    525525
    526   updateVectorAdjoint(tape, indexB, adjX, n);
     526  updateVectorAdjoint(*tape, indexB, adjX, n);
    527527
    528528  // bcast dp_y (the solution of the forward system)
     
    534534    // we access the transposed matrix here because we stored the indices in a transposed way
    535535    // -1 is substracted because jcn and irn are stored with fortran indexing
    536     updateAdjoint(tape, indexATrans[i], -adjX[jcnATrans[i]-1]*valueX[irnATrans[i]-1]);
     536    updateAdjoint(*tape, indexATrans[i], -adjX[jcnATrans[i]-1]*valueX[irnATrans[i]-1]);
    537537  }
    538538
     
    540540}
    541541/*}}}*/
    542 void MumpsSolve_codi_delete(void* tape_in,void* data_in) {/*{{{*/
     542void MumpsSolve_codi_delete(Tape* tape,void* data_in) {/*{{{*/
    543543
    544544        /*recast data_in*/
    545         codi::DataStore* data = (codi::DataStore*)data_in;
     545        codi::ExternalFunctionUserData* data = (codi::ExternalFunctionUserData*)data_in;
    546546
    547547  IssmDouble::Real* valueATrans;
    548   IssmDouble::GradientData* indexATrans;
     548  IssmDouble::Identifier* indexATrans;
    549549  int* irnATrans;
    550550  int* jcnATrans;
    551   IssmDouble::GradientData* indexB;
     551  IssmDouble::Identifier* indexB;
    552552  IssmDouble::Real* valueX;
    553   IssmDouble::GradientData* indexX;
     553  IssmDouble::Identifier* indexX;
    554554  int n;
    555555  int nnz;
     
    582582void MumpsSolve(int n,int nnz,int local_nnz,int* irn_loc,int* jcn_loc,IssmDouble *a_loc,IssmDouble *rhs,Parameters* parameters){/*{{{*/
    583583  IssmDouble::Tape& tape = IssmDouble::getTape();
    584   codi::DataStore* dataHandler = NULL;
     584  codi::ExternalFunctionUserData* dataHandler = NULL;
    585585
    586586  if(tape.isActive()) {
    587     dataHandler = new codi::DataStore();
     587    dataHandler = new codi::ExternalFunctionUserData();
    588588
    589589    // create the index and double vector for the matrix
    590590    IssmDouble::Real* valueATrans = xNew<IssmDouble::Real>(local_nnz);
    591     IssmDouble::GradientData* indexATrans = xNew<IssmDouble::GradientData>(local_nnz);
     591    IssmDouble::Identifier* indexATrans = xNew<IssmDouble::Identifier>(local_nnz);
    592592    int* irnATrans = xNew<int>(local_nnz);
    593593    int* jcnATrans = xNew<int>(local_nnz);
     
    601601
    602602    // create the index vector for a (primal values are not needed for a)
    603     IssmDouble::GradientData* indexB = xNew<IssmDouble::GradientData>(n);
     603    IssmDouble::Identifier* indexB = xNew<IssmDouble::Identifier>(n);
    604604    getVectorGradData(rhs, indexB, n);
    605605
     
    626626  if(tape.isActive()) {
    627627    // create the index vector X and register x as active variables
    628     IssmDouble::GradientData* indexX = xNew<IssmDouble::GradientData>(n);
     628    IssmDouble::Identifier* indexX = xNew<IssmDouble::Identifier>(n);
    629629    registerVector(rhs, indexX, n);
    630630
     
    638638    dataHandler->addData(parameters); // we assume here that parameters is still intact when the reverse run is called
    639639
    640          //tape.pushExternalFunction(&MumpsSolve_codi_b, dataHandler, &MumpsSolve_codi_delete);
    641     tape.pushExternalFunctionHandle(&MumpsSolve_codi_b,(void*)dataHandler, &MumpsSolve_codi_delete);
     640         tape.pushExternalFunction(codi::ExternalFunction<Tape>::create(&MumpsSolve_codi_b,(void*)dataHandler, &MumpsSolve_codi_delete));
    642641  }
    643642  else{
Note: See TracChangeset for help on using the changeset viewer.