X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..b6dde5ff6f208b83545a4b4e9e81712d0d8617a1:/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 b6b06fcb6e..10f41b50be 100644 --- a/src/smpi/colls/allgather/allgather-2dmesh.cpp +++ b/src/smpi/colls/allgather/allgather-2dmesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -53,7 +53,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Function: is_2dmesh - * Return: int + * Return: bool * Inputs: num: the number of processors in a communicator @@ -62,11 +62,11 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * Descp: takes a number and tries to find a factoring of x, y mesh out of it - * Auther: Ahmad Faraj + * Author: Ahmad Faraj ****************************************************************************/ #ifndef TWOD #define TWOD -static int is_2dmesh(int num, int *i, int *j) +static bool is_2dmesh(int num, int* i, int* j) { int x, max = num / 2; x = sqrt(double(num)); @@ -82,11 +82,11 @@ static int is_2dmesh(int num, int *i, int *j) *j = x; } - return 1; + return true; } x++; } - return 0; + return false; } #endif /***************************************************************************** @@ -103,7 +103,7 @@ static int is_2dmesh(int num, int *i, int *j) * algorithm. Allgather ommunication occurs first in the x dimension then in * the y dimension. The communication in each dimension follows * "simple" - * Auther: Ahmad Faraj + * Author: Ahmad Faraj ****************************************************************************/ namespace simgrid{ @@ -111,9 +111,9 @@ namespace smpi{ int -Coll_allgather_2dmesh::allgather(const void *send_buff, int send_count, MPI_Datatype - send_type, void *recv_buff, int recv_count, - MPI_Datatype recv_type, MPI_Comm comm) +allgather__2dmesh(const void *send_buff, int send_count, MPI_Datatype + send_type, void *recv_buff, int recv_count, + MPI_Datatype recv_type, MPI_Comm comm) { MPI_Aint extent;