...
An existing application can be investigated with respect to meta data usage. Let us assume an example job script for an MPI the parallel application myexample.bin
. For this example with 16 MPI tasks are executed.
Codeblock | ||
---|---|---|
| ||
#!/bin/bash #SBATCH --nodes=2 #SBATCH --ntasks-per-node=8 #SBATCH --time=01:00:00 #SBATCH --partition=standard96 srun ./myexample.bin |
...