Skip to content

Commit 7d0ce12

Browse files
committed
reinstate pdirun
1 parent 8beb7e4 commit 7d0ce12

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cd tutorial
3535

3636
Before 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.
4444
Once you have correctly modified each exercise according to instructions, you
4545
can compile it by running:
4646
```bash
47-
make ex?
47+
pdirun make ex?
4848
```
4949
Where `?` is the number of the exercise.
5050

@@ -53,15 +53,15 @@ Where `?` is the number of the exercise.
5353

5454
You can run each exercise with the following command:
5555
```bash
56-
/usr/bin/srun -n 4 ./ex?
56+
pdirun mpirun -n 4 ./ex?
5757
```
5858
Where `?` is the number of the exercise and 4 represents the number of MPI
5959
processes to use.
6060

6161
To store the logs for later comparison, you can use the following command (for
6262
example 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

6767
Now you're ready to work, **good luck**!

0 commit comments

Comments
 (0)