Skip to content

Commit

Permalink
hpcbind: check for correct Slurm variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rbberger committed May 9, 2023
1 parent b26ee87 commit aa7ab5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/hpcbind
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ elif [[ ! -z "${MV2_COMM_WORLD_RANK}" ]]; then
HPCBIND_QUEUE_NAME="mvapich2"
HPCBIND_QUEUE_RANK=${MV2_COMM_WORLD_RANK}
HPCBIND_QUEUE_SIZE=${MV2_COMM_WORLD_SIZE}
elif [[ ! -z "${SLURM_LOCAL_ID}" ]]; then
elif [[ ! -z "${SLURM_LOCALID}" ]]; then
HPCBIND_QUEUE_MAPPING=1
HPCBIND_QUEUE_NAME="slurm"
HPCBIND_QUEUE_RANK=${SLURM_PROCID}
Expand Down

0 comments on commit aa7ab5f

Please sign in to comment.