X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f:/src/smpi/colls/allgatherv/allgatherv-ring.cpp diff --git a/src/smpi/colls/allgatherv/allgatherv-ring.cpp b/src/smpi/colls/allgatherv/allgatherv-ring.cpp index b09243566c..b9f04dde1f 100644 --- a/src/smpi/colls/allgatherv/allgatherv-ring.cpp +++ b/src/smpi/colls/allgatherv/allgatherv-ring.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -61,17 +61,17 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * recv_type: data type of elements being received * comm: communication * Descrp: Function works in P - 1 steps. In step i, node j - i -> j -> j+ i. - * Auther: Ahmad Faraj + * Author: Ahmad Faraj ****************************************************************************/ namespace simgrid{ namespace smpi{ int -Coll_allgatherv_ring::allgatherv(const void *send_buff, int send_count, - MPI_Datatype send_type, void *recv_buff, - const int *recv_counts, const int *recv_disps, MPI_Datatype recv_type, - MPI_Comm comm) +allgatherv__ring(const void *send_buff, int send_count, + MPI_Datatype send_type, void *recv_buff, + const int *recv_counts, const int *recv_disps, MPI_Datatype recv_type, + MPI_Comm comm) { MPI_Aint extent;