Update 'README.md'

This commit is contained in:
Michael Krayer 2021-01-19 13:16:16 +01:00
parent a34c9714ab
commit 3c5f24de27
1 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,11 @@
mkparallel
---
Execute a serial command embarassingly parallel.
Usage:
mpirun -n <nproc> mkparallel <command> <digits>
<command> is the command to be executed where every occurence of {} will be replaced by the rank of the processor.
The rank can be padded with leading zeros by specifying <digits> with a value greater than zero.
Usage:
```bash
mpirun -n <nproc> mkparallel <command> <digits>
```
`<command>` is the command to be executed where every occurence of `{}` will be replaced by the rank of the processor.
The rank can be padded with leading zeros by specifying `<digits>` with a value greater than zero.