Samuel Thibault лет назад: 6
Родитель
Сommit
aa3c8e5927
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      doc/doxygen/chapters/410_mpi_support.doxy

+ 2 - 2
doc/doxygen/chapters/410_mpi_support.doxy

@@ -822,7 +822,7 @@ for(x = 0; x < nblocks ;  x++)
 }
 
 /* Scatter the matrix among the nodes */
-starpu_mpi_scatter_detached(data_handles, nblocks, root, MPI_COMM_WORLD);
+starpu_mpi_scatter_detached(data_handles, nblocks, root, MPI_COMM_WORLD, NULL, NULL, NULL, NULL);
 
 /* Calculation */
 for(x = 0; x < nblocks ;  x++)
@@ -838,7 +838,7 @@ for(x = 0; x < nblocks ;  x++)
 }
 
 /* Gather the matrix on main node */
-starpu_mpi_gather_detached(data_handles, nblocks, 0, MPI_COMM_WORLD);
+starpu_mpi_gather_detached(data_handles, nblocks, 0, MPI_COMM_WORLD, NULL, NULL, NULL, NULL);
 \endcode
 
 Other collective operations would be easy to define, just ask starpu-devel for