瀏覽代碼

Add missing parameters

Samuel Thibault 6 年之前
父節點
當前提交
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