X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a5e77eb8c0cb5fe6fa93bd52e8ffe50fcd9467ca..56bcf2dd190eb7d40a0d2e542d2c8f51f7ebd350:/src/smpi/colls/allgatherv-mpich-rdb.c diff --git a/src/smpi/colls/allgatherv-mpich-rdb.c b/src/smpi/colls/allgatherv-mpich-rdb.c index 8094db08cc..a3614e5f69 100644 --- a/src/smpi/colls/allgatherv-mpich-rdb.c +++ b/src/smpi/colls/allgatherv-mpich-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. */ + /* Short or medium size message and power-of-two no. of processes. Use * recursive doubling algorithm */ #include "colls_private.h" @@ -11,23 +17,24 @@ int smpi_coll_tuned_allgatherv_mpich_rdb ( MPI_Datatype recvtype, MPI_Comm comm) { - int comm_size, rank, j, i; + int j, i; MPI_Status status; MPI_Aint recvtype_extent, recvtype_true_extent, recvtype_true_lb; int curr_cnt, dst, total_count; - void *tmp_buf; - int mask, dst_tree_root, my_tree_root, position, + void *tmp_buf, *tmp_buf_rl; + unsigned int mask, dst_tree_root, my_tree_root, position, send_offset, recv_offset, last_recv_cnt=0, nprocs_completed, k, offset, tmp_mask, tree_root; - comm_size = smpi_comm_size(comm); - rank = smpi_comm_rank(comm); + unsigned int comm_size = smpi_comm_size(comm); + unsigned int rank = smpi_comm_rank(comm); total_count = 0; for (i=0; i