Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Hint about how to configure with ninja instead of make
[simgrid.git] / docs / source / Tutorial_MPI_Applications.rst
index 12d61e7aa2b50a5d76c7fbf500f133b026a3351d..e06fb9cada26cdd6ee331990ed728898357f5379 100644 (file)
@@ -544,7 +544,7 @@ The computing part of this example is the matrix multiplication routine
 .. code-block:: console
 
   $ smpicxx -O3 gemm_mpi.cpp -o gemm
-  $ time smpirun -np 16 -platform cluster_crossbar.xml -hostfile cluster_hostfile --cfg=smpi/display-timing:yes --cfg=smpi/running-power:1000000000 ./gemm
+  $ time smpirun -np 16 -platform cluster_crossbar.xml -hostfile cluster_hostfile --cfg=smpi/display-timing:yes --cfg=smpi/host-speed:1000000000 ./gemm
 
 This should end quite quickly, as the size of each matrix is only 1000x1000.
 But what happens if we want to simulate larger runs?