X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..6633f5c4d1b7d52fa54306ee3fb7eb573daeb274:/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp diff --git a/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp b/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp index df72733c94..1434b0eef2 100644 --- a/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp +++ b/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp @@ -14,12 +14,12 @@ namespace simgrid{ namespace smpi{ int Coll_allgatherv_mpich_rdb::allgatherv ( - void *sendbuf, + const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, - int *recvcounts, - int *displs, + const int *recvcounts, + const int *displs, MPI_Datatype recvtype, MPI_Comm comm) { @@ -27,7 +27,6 @@ int Coll_allgatherv_mpich_rdb::allgatherv ( MPI_Status status; MPI_Aint recvtype_extent, recvtype_true_extent, recvtype_true_lb; unsigned int curr_cnt, dst, total_count; - void *tmp_buf, *tmp_buf_rl; unsigned int mask, dst_tree_root, my_tree_root, position, send_offset, recv_offset, last_recv_cnt=0, nprocs_completed, k, offset, tmp_mask, tree_root; @@ -49,10 +48,10 @@ int Coll_allgatherv_mpich_rdb::allgatherv ( recvtype->extent(&recvtype_true_lb, &recvtype_true_extent); - tmp_buf_rl = (void*)smpi_get_tmp_sendbuffer(total_count * std::max(recvtype_true_extent, recvtype_extent)); + unsigned char* tmp_buf_rl = smpi_get_tmp_sendbuffer(total_count * std::max(recvtype_true_extent, recvtype_extent)); /* adjust for potential negative lower bound in datatype */ - tmp_buf = (void *)((char*)tmp_buf_rl - recvtype_true_lb); + unsigned char* tmp_buf = tmp_buf_rl - recvtype_true_lb; /* copy local data into right location in tmp_buf */ position = 0; @@ -60,20 +59,13 @@ int Coll_allgatherv_mpich_rdb::allgatherv ( position += recvcounts[i]; if (sendbuf != MPI_IN_PLACE) { - Datatype::copy(sendbuf, sendcount, sendtype, - ((char *)tmp_buf + position* - recvtype_extent), - recvcounts[rank], recvtype); + Datatype::copy(sendbuf, sendcount, sendtype, tmp_buf + position * recvtype_extent, recvcounts[rank], recvtype); } else { /* if in_place specified, local data is found in recvbuf */ - Datatype::copy(((char *)recvbuf + - displs[rank]*recvtype_extent), - recvcounts[rank], recvtype, - ((char *)tmp_buf + position* - recvtype_extent), - recvcounts[rank], recvtype); + Datatype::copy(static_cast(recvbuf) + displs[rank] * recvtype_extent, recvcounts[rank], recvtype, + tmp_buf + position * recvtype_extent, recvcounts[rank], recvtype); } curr_cnt = recvcounts[rank]; @@ -102,13 +94,9 @@ int Coll_allgatherv_mpich_rdb::allgatherv ( for (j=0; j(recvbuf) + displs[j] * recvtype_extent, recvcounts[j], recvtype); } position += recvcounts[j]; }