Ignore:
Timestamp:
03/22/18 10:43:20 (6 years ago)
Author:
yushan
Message:

branch_openmp merged with XIOS_DEV_CMIP6@1459

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_openmp/extern/src_ep_dev/ep_declaration.cpp

    r1373 r1460  
    2424::MPI_Datatype MPI_UNSIGNED_LONG_STD = MPI_UNSIGNED_LONG; 
    2525::MPI_Datatype MPI_UNSIGNED_CHAR_STD = MPI_UNSIGNED_CHAR; 
     26::MPI_Datatype MPI_UINT64_T_STD = MPI_UINT64_T; 
    2627 
    2728#undef MPI_INT 
     
    3233#undef MPI_UNSIGNED_LONG 
    3334#undef MPI_UNSIGNED_CHAR 
     35#undef MPI_UINT64_T 
    3436 
    3537 
     
    3739::MPI_Op MPI_MAX_STD = MPI_MAX; 
    3840::MPI_Op MPI_MIN_STD = MPI_MIN; 
     41::MPI_Op MPI_LOR_STD = MPI_LOR; 
    3942 
    4043#undef MPI_SUM 
    4144#undef MPI_MAX 
    4245#undef MPI_MIN 
    43  
    44  
    45 /*#undef MPI_INT 
    46 #undef MPI_FLOAT 
    47 #undef MPI_DOUBLE 
    48 #undef MPI_CHAR 
    49 #undef MPI_LONG 
    50 #undef MPI_UNSIGNED_LONG 
    51 #undef MPI_UNSIGNED_CHAR 
    52  
    53 #undef MPI_SUM 
    54 #undef MPI_MAX 
    55 #undef MPI_MIN 
    56  
    57 #undef MPI_COMM_WORLD 
    58 #undef MPI_COMM_NULL 
    59  
    60 #undef MPI_STATUS_IGNORE 
    61 #undef MPI_REQUEST_NULL 
    62 #undef MPI_INFO_NULL 
    63 */ 
     46#undef MPI_LOR 
    6447 
    6548 
     
    7356extern ::MPI_Datatype MPI_UNSIGNED_LONG_STD; 
    7457extern ::MPI_Datatype MPI_UNSIGNED_CHAR_STD; 
     58extern ::MPI_Datatype MPI_UINT64_T_STD; 
     59 
    7560 
    7661extern ::MPI_Op MPI_SUM_STD; 
    7762extern ::MPI_Op MPI_MAX_STD; 
    7863extern ::MPI_Op MPI_MIN_STD; 
     64extern ::MPI_Op MPI_LOR_STD; 
    7965 
    8066extern ::MPI_Comm MPI_COMM_WORLD_STD; 
     
    9278ep_lib::MPI_Datatype MPI_UNSIGNED_LONG = &MPI_UNSIGNED_LONG_STD; 
    9379ep_lib::MPI_Datatype MPI_UNSIGNED_CHAR = &MPI_UNSIGNED_CHAR_STD; 
     80ep_lib::MPI_Datatype MPI_UINT64_T = &MPI_UINT64_T_STD; 
     81 
    9482 
    9583ep_lib::MPI_Op MPI_SUM = &MPI_SUM_STD; 
    9684ep_lib::MPI_Op MPI_MAX = &MPI_MAX_STD; 
    9785ep_lib::MPI_Op MPI_MIN = &MPI_MIN_STD; 
     86ep_lib::MPI_Op MPI_LOR = &MPI_LOR_STD; 
    9887 
    9988ep_lib::MPI_Comm MPI_COMM_WORLD(&MPI_COMM_WORLD_STD); 
Note: See TracChangeset for help on using the changeset viewer.