We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs/polaris /running-jobs.md
Update the
Running Multiple MPI Applications on a node from docs/polaris/running-jobs.md#L47
example to instead use 1 MPI rank / GPU. e.g.
#!/bin/bash --login setupPolaris() { if [[ $(hostname) == x* ]]; then # -- MPI / Comms Setup ----------------- NHOSTS=$(wc -l < "${PBS_NODEFILE}") NGPU_PER_HOST=$(nvidia-smi -L | wc -l) NGPUS=$((${NHOSTS}*${NGPU_PER_HOST})) MPI_COMMAND=$(which mpiexec) MPI_DEFAULTS="\ --envall \ --verbose \ --hostfile ${HOSTFILE}" MPI_ELASTIC="\ -n ${NGPUS} \ --ppn ${NGPU_PER_HOST}" MPI_EXEC="\ ${MPI_COMMAND} \ ${MPI_DEFAULTS} \ ${MPI_ELASTIC}" else echo "Unexpected hostname: $(hostname)" fi } setupPolaris "${MPI_EXEC}" $@
The text was updated successfully, but these errors were encountered:
Is this still an issue @saforem2 ?
Sorry, something went wrong.
No branches or pull requests
Update the
example to instead use 1 MPI rank / GPU. e.g.
The text was updated successfully, but these errors were encountered: