Ignore:
Timestamp:
06/08/17 17:31:50 (7 years ago)
Author:
yushan
Message:

Bug fixed in MPI_(All)Gatherv with displs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_yushan_merged/extern/src_ep_dev/ep_lib_collective.hpp

    r1134 r1164  
    3131  int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], 
    3232                  MPI_Datatype recvtype, int root, MPI_Comm comm); 
     33  int MPI_Gatherv_special(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], 
     34                          MPI_Datatype recvtype, int root, MPI_Comm comm); 
    3335  int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], 
    34                   MPI_Datatype recvtype, MPI_Comm comm); 
     36                     MPI_Datatype recvtype, MPI_Comm comm); 
     37  int MPI_Allgatherv_special(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], 
     38                             MPI_Datatype recvtype, MPI_Comm comm); 
     39 
    3540 
    3641  int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm); 
Note: See TracChangeset for help on using the changeset viewer.