Changeset 27373


Ignore:
Timestamp:
11/10/22 05:47:05 (2 years ago)
Author:
Mathieu Morlighem
Message:

CHG: trying to fix ADOLC

File:
1 edited

Legend:

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

    r27372 r27373  
    6868        // types
    6969        #if defined(_HAVE_MEDIPACK_) && !defined(_WRAPPERS_)
    70         typedef AMPI_Comm             ISSM_MPI_Comm;
    71         typedef AMPI_Datatype         ISSM_MPI_Datatype;
    72         typedef AMPI_Op               ISSM_MPI_Op;
    73         typedef AMPI_Status           ISSM_MPI_Status;
    74         typedef AMPI_Request          ISSM_MPI_Request;
    75         #else
    76         typedef MPI_Comm             ISSM_MPI_Comm;
    77         typedef MPI_Datatype         ISSM_MPI_Datatype;
    78         typedef MPI_Op               ISSM_MPI_Op;
    79         typedef MPI_Status           ISSM_MPI_Status;
    80         typedef MPI_Request          ISSM_MPI_Request;
     70        typedef AMPI_Comm     ISSM_MPI_Comm;
     71        typedef AMPI_Datatype ISSM_MPI_Datatype;
     72        typedef AMPI_Op       ISSM_MPI_Op;
     73        typedef AMPI_Status   ISSM_MPI_Status;
     74        typedef AMPI_Request  ISSM_MPI_Request;
     75        #else
     76        typedef MPI_Comm      ISSM_MPI_Comm;
     77        typedef MPI_Datatype  ISSM_MPI_Datatype;
     78        typedef MPI_Op        ISSM_MPI_Op;
     79        typedef MPI_Status    ISSM_MPI_Status;
     80        #if defined(_HAVE_AMPI_) && !defined(_WRAPPERS_)
     81        typedef AMPI_Request   ISSM_MPI_Request;
     82        #else
     83        typedef MPI_Request  ISSM_MPI_Request;
     84        #endif
    8185        #endif
    8286
     
    130134        /*Our ISSM MPI defines: {{{*/
    131135        // types
    132         typedef int                  ISSM_MPI_Comm;
    133         typedef int                  ISSM_MPI_Datatype;
    134         typedef int                  ISSM_MPI_Op;
    135         typedef int                  ISSM_MPI_Status;
     136        typedef int  ISSM_MPI_Comm;
     137        typedef int  ISSM_MPI_Datatype;
     138        typedef int  ISSM_MPI_Op;
     139        typedef int  ISSM_MPI_Status;
     140        typedef int  ISSM_MPI_Request;
    136141
    137142        // data types
Note: See TracChangeset for help on using the changeset viewer.