|
@@ -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
|