Ignore:
Timestamp:
03/26/21 11:27:42 (3 years ago)
Author:
jderouillat
Message:

Enable GNU compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_ym/XIOS_COUPLING/src/mpi_tools.cpp

    r1984 r2118  
    2727  } 
    2828 
     29  template<> 
     30  MPI_Datatype MPI_GetType<char>(void) { return MPI_CHAR ;} 
     31 
     32  template<> 
     33  MPI_Datatype MPI_GetType<short int>(void) { return MPI_SHORT ;} 
     34 
     35  template<> 
     36  MPI_Datatype MPI_GetType<int>(void) { return MPI_INT ;} 
     37 
     38  template<> 
     39  MPI_Datatype MPI_GetType<size_t>(void) { return MPI_SIZE_T ;} 
     40 
     41  template<> 
     42  MPI_Datatype MPI_GetType<float>(void) { return MPI_FLOAT ;} 
     43 
     44  template<> 
     45  MPI_Datatype MPI_GetType<double>(void) { return MPI_DOUBLE ;} 
     46 
     47  template<> 
     48  MPI_Datatype MPI_GetType<long double>(void) { return MPI_LONG_DOUBLE ;} 
     49 
    2950} 
Note: See TracChangeset for help on using the changeset viewer.