X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7ed19dfcc221d7b3eca182abb5c4a3946671172..67fe7b9d6c00b390a8598bc1e72d42d8343cb218:/src/smpi/colls/allgather/allgather-3dmesh.cpp diff --git a/src/smpi/colls/allgather/allgather-3dmesh.cpp b/src/smpi/colls/allgather/allgather-3dmesh.cpp index 2c80059f85..b3a8586969 100644 --- a/src/smpi/colls/allgather/allgather-3dmesh.cpp +++ b/src/smpi/colls/allgather/allgather-3dmesh.cpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2018. 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" /***************************************************************************** @@ -113,7 +113,7 @@ int Coll_allgather_3dmesh::allgather(void *send_buff, int send_count, num_procs = comm->size(); extent = send_type->get_extent(); - if (!is_3dmesh(num_procs, &X, &Y, &Z)) + if (not is_3dmesh(num_procs, &X, &Y, &Z)) THROWF(arg_error,0, "allgather_3dmesh algorithm can't be used with this number of processes! "); @@ -137,12 +137,12 @@ int Coll_allgather_3dmesh::allgather(void *send_buff, int send_count, 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); - // do rowwise comm + // do rowwise comm for (i = 0; i < Y; i++) { src = i + my_row_base; if (src == rank)