X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4d140762b2b9c8746cdd3b0680a7167867ba0ad9..ea74f5d95928a521a588737e81f1de94eef25d19:/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 9226be163e..6e6e5c2be7 100644 --- a/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp +++ b/src/smpi/colls/allgatherv/allgatherv-mpich-rdb.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -6,19 +6,20 @@ /* Short or medium size message and power-of-two no. of processes. Use * recursive doubling algorithm */ -#include "../colls_private.h" +#include "../colls_private.hpp" #include "smpi_status.hpp" +#include namespace simgrid{ namespace smpi{ -int Coll_allgatherv_mpich_rdb::allgatherv ( - void *sendbuf, +int allgatherv__mpich_rdb( + 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) { @@ -26,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; @@ -48,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*(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; @@ -59,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]; @@ -101,13 +94,9 @@ int Coll_allgatherv_mpich_rdb::allgatherv ( for (j=0; j(recvbuf) + displs[j] * recvtype_extent, recvcounts[j], recvtype); } position += recvcounts[j]; }