X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f9436b840852218b39dce22d6057b6f223168daa..b8df87e176f27b25534f27d7e240defa32ca35bc:/src/smpi/colls/allgather/allgather-2dmesh.cpp diff --git a/src/smpi/colls/allgather/allgather-2dmesh.cpp b/src/smpi/colls/allgather/allgather-2dmesh.cpp index 786b0af042..2b49ff3769 100644 --- a/src/smpi/colls/allgather/allgather-2dmesh.cpp +++ b/src/smpi/colls/allgather/allgather-2dmesh.cpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. 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. */ -#include "../colls_private.h" +#include "../colls_private.hpp" /***************************************************************************** @@ -101,7 +101,7 @@ static int is_2dmesh(int num, int *i, int *j) * comm: communication * Descrp: Function realizes the allgather operation using the 2dmesh * algorithm. Allgather ommunication occurs first in the x dimension then in - * the y dimension. The communication in each dimension follows + * the y dimension. The communication in each dimension follows * "simple" * Auther: Ahmad Faraj ****************************************************************************/ @@ -144,7 +144,7 @@ Coll_allgather_2dmesh::allgather(void *send_buff, int send_count, MPI_Datatype req_ptr = req; - // do local allgather/local copy + // do local allgather/local copy recv_offset = rank * block_size; Datatype::copy(send_buff, send_count, send_type, (char *)recv_buff + recv_offset, recv_count, recv_type);