Ignore:
Timestamp:
05/29/17 16:15:38 (7 years ago)
Author:
yushan
Message:

bug fixed in MPI_Gather(v)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/branch_yushan_merged/extern/src_ep_dev/ep_alltoall.cpp

    r1146 r1147  
    1616    int ep_size; 
    1717    MPI_Comm_size(comm, &ep_size); 
     18     
    1819 
    1920    for(int i=0; i<ep_size; i++) 
    2021    { 
    21       MPI_Gather(sendbuf+i*sendcount*typesize, sendcount, sendtype, recvbuf, recvcount, recvtype, i, comm); 
     22      ep_lib::MPI_Gather(sendbuf+i*sendcount*typesize, sendcount, sendtype, recvbuf, recvcount, recvtype, i, comm); 
    2223    } 
     24     
    2325 
    2426    return 0; 
Note: See TracChangeset for help on using the changeset viewer.