Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use correct parameter for bcast operation.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 15 Apr 2013 13:24:58 +0000 (15:24 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Mon, 15 Apr 2013 16:16:18 +0000 (18:16 +0200)
src/smpi/colls/allgatherv-GB.c

index 5c643fa..2a60a47 100644 (file)
@@ -12,9 +12,10 @@ int smpi_coll_tuned_allgatherv_GB(void *send_buff, int send_count,
   num_procs = smpi_comm_size(comm);
   for (i = 0; i < num_procs; i++) {
     current = recv_disps[i] + recv_counts[i];
-    if (current > max) max = current;
+    if (current > max)
+      max = current;
   }
-  mpi_coll_bcast_fun(recv_buff, current, recv_type, 0, comm);
+  mpi_coll_bcast_fun(recv_buff, max, recv_type, 0, comm);
 
   return MPI_SUCCESS;
 }