]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/colls/bcast-NTSL.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change some behaviors with MPI_IN_PLACE
[simgrid.git] / src / smpi / colls / bcast-NTSL.c
index 53a7d76cc72abf4874adc8cba73e29d2231efce0..23a51bcca6e84c16ee3b4e6a0bac618a5fa2e04b 100644 (file)
@@ -20,8 +20,8 @@ int smpi_coll_tuned_bcast_NTSL(void *buf, int count, MPI_Datatype datatype,
   MPI_Aint extent;
   extent = smpi_datatype_get_extent(datatype);
 
-  rank = smpi_comm_rank(MPI_COMM_WORLD);
-  size = smpi_comm_size(MPI_COMM_WORLD);
+  rank = smpi_comm_rank(comm);
+  size = smpi_comm_size(comm);
 
   /* source node and destination nodes (same through out the functions) */
   int to = (rank + 1) % size;