Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
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
languagebash
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
languagebash
sed -i "s/io500_mpiargs=".*"/io500_mpiargs=\"-hosts $CLIENT_NODES -np 2\"/g" io500.sh

Run the io500 script

...