File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ cd tutorial
3535
3636Before compilation, configure the tutorial by detecting all dependencies:
3737``` bash
38- cmake .
38+ pdirun cmake .
3939```
4040
4141\attention
@@ -44,7 +44,7 @@ If you installed PDI in a standard path, the `pdirun` prefix is never required.
4444Once you have correctly modified each exercise according to instructions, you
4545can compile it by running:
4646``` bash
47- make ex?
47+ pdirun make ex?
4848```
4949Where ` ? ` is the number of the exercise.
5050
@@ -53,15 +53,15 @@ Where `?` is the number of the exercise.
5353
5454You can run each exercise with the following command:
5555``` bash
56- /usr/bin/srun -n 4 ./ex?
56+ pdirun mpirun -n 4 ./ex?
5757```
5858Where ` ? ` is the number of the exercise and 4 represents the number of MPI
5959processes to use.
6060
6161To store the logs for later comparison, you can use the following command (for
6262example for ex2.):
6363``` bash
64- /usr/bin/srun -n 1 ./ex2 > ex2.result.log
64+ pdirun mpirun -n 1 ./ex2 > ex2.result.log
6565```
6666
6767Now you're ready to work, ** good luck** !
You can’t perform that action at this time.
0 commit comments