X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/56b8ebe99bfcd666e373069b2072291ab5e04ee8..1687df79d61a9418bba830bbd0ab7de16e457090:/src/smpi/colls/allgather-pair.c?ds=sidebyside diff --git a/src/smpi/colls/allgather-pair.c b/src/smpi/colls/allgather-pair.c index 50f75aa747..6111f2820c 100644 --- a/src/smpi/colls/allgather-pair.c +++ b/src/smpi/colls/allgather-pair.c @@ -1,3 +1,9 @@ +/* Copyright (c) 2013-2014. 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" /***************************************************************************** @@ -66,15 +72,15 @@ smpi_coll_tuned_allgather_pair(void *send_buff, int send_count, { MPI_Aint extent; - int i, src, dst, rank, num_procs; + unsigned int i, src, dst; int tag = COLL_TAG_ALLGATHER; MPI_Status status; char *send_ptr = (char *) send_buff; char *recv_ptr = (char *) recv_buff; - rank = smpi_comm_rank(comm); - num_procs = smpi_comm_size(comm); + unsigned int rank = smpi_comm_rank(comm); + unsigned int num_procs = smpi_comm_size(comm); if((num_procs&(num_procs-1))) THROWF(arg_error,0, "allgather pair algorithm can't be used with non power of two number of processes ! ");