...
Code Block | ||
---|---|---|
| ||
envsubst < config-full.ini > temp.ini |
Update io500.sh script with the mpirun command and number of processes to use
Depending on the MPI used, different flags may be required.
For openmpi:
Code Block | ||
---|---|---|
| ||
sed -i "s/io500_mpiargs=".*"/io500_mpiargs=\"-hosts $CLIENT_NODES -x DAOS_POOL -x DAOS_CONT -np 2\"/g" io500.sh |
For mpich:
Code Block | ||
---|---|---|
| ||
sed -i "s/io500_mpiargs=".*"/io500_mpiargs=\"-hosts $CLIENT_NODES -np 2\"/g" io500.sh |
Run the io500 script
...