X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b73466ada27682d1729f394549479da83ef4a99..1687df79d61a9418bba830bbd0ab7de16e457090:/src/smpi/colls/allgather-rdb.c diff --git a/src/smpi/colls/allgather-rdb.c b/src/smpi/colls/allgather-rdb.c index 26467de554..84acf3d99f 100644 --- a/src/smpi/colls/allgather-rdb.c +++ b/src/smpi/colls/allgather-rdb.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" int @@ -11,7 +17,7 @@ smpi_coll_tuned_allgather_rdb(void *sbuf, int send_count, MPI_Aint send_chunk, recv_chunk; // local int variables - int i, j, k, dst, rank, num_procs, send_offset, recv_offset, tree_root; + unsigned int i, j, k, dst, send_offset, recv_offset, tree_root; int dst_tree_root, rank_tree_root, last_recv_count = 0, num_procs_completed; int offset, tmp_mask; int tag = COLL_TAG_ALLGATHER; @@ -24,8 +30,8 @@ smpi_coll_tuned_allgather_rdb(void *sbuf, int send_count, char *recv_ptr = (char *) rbuf; // get size of the communicator, followed by rank - num_procs = smpi_comm_size(comm); - rank = smpi_comm_rank(comm); + unsigned int num_procs = smpi_comm_size(comm); + unsigned int rank = smpi_comm_rank(comm); // get size of single element's type for send buffer and recv buffer send_chunk = smpi_datatype_get_extent(send_type);