Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpirun: don't use the ARGS variable, that may be used by others
[simgrid.git] / src / smpi / colls / allgather-pair.c
index 46cde2dea5c6c66135a2902f4ea88f09f4bdfc9b..6111f2820c079a96e30cabda6e4e9bd228a56ece 100644 (file)
@@ -72,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 ! ");