Changeset 24767


Ignore:
Timestamp:
05/01/20 08:36:08 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: new implementation of medipack

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

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/mpi/issmmpi.cpp

    r23357 r24767  
    221221                                rc=AMPI_Finalize();
    222222                        #elif defined(_HAVE_MEDIPACK_)
    223                                 TOOL::finalize();
     223                                /*Old implementation*/
     224                                //TOOL::finalize();
     225                                /*New implementation*/
     226                                delete mpiTypes;
    224227                                rc=AMPI_Finalize();
    225228                        #else
     
    318321                        #elif defined(_HAVE_MEDIPACK_)
    319322                                rc=AMPI_Init(argc,argv);
    320                                 TOOL::init();
     323                                /*Old implementation of Medipack*/
     324                                //TOOL::init();
     325                                /*New*/
     326                                //MpiTypes* mpiTypes;
     327                                mpiTypes = new MpiTypes();
    321328                        #else
    322329                                rc=AMPI_Init_NT(argc,argv);
  • issm/trunk-jpl/src/c/toolkits/mpi/issmmpi.h

    r24593 r24767  
    2626                        using namespace medi;
    2727                        #if defined(_HAVE_CODIPACK_)
    28                         #include "codi/externals/codiMediPackTypes.hpp"
    29                         #define TOOL CoDiPackTool<IssmDouble>
    30                         #define AMPI_ADOUBLE TOOL::MPI_TYPE
     28                        /*Old implementation of MeDiPack*/
     29                        //#include "codi/externals/codiMediPackTypes.hpp"
     30                        //#define TOOL CoDiPackTool<IssmDouble>
     31                        //#define AMPI_ADOUBLE TOOL::MPI_TYPE
     32                        //
     33                        /*New implementation*/
     34                        #include <codi/externals/codiMpiTypes.hpp>
     35                        using MpiTypes = CoDiMpiTypes<IssmDouble>;
     36                        MpiTypes* mpiTypes;
     37                        #define AMPI_ADOUBLE mpiTypes->MPI_TYPE
    3138                        #elif defined(_HAVE_ADOLC_)
    3239                        #include "adolc/medipacksupport.h"
Note: See TracChangeset for help on using the changeset viewer.