소스 검색

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