Skip to content

Commit ae324d9

Browse files
authored
Fix: NERSC PM Interactive (#6414)
Fix the `getNode` and `runNode` alias in our profile to support multiple GPUs and close #6382.
1 parent cbe7368 commit ae324d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/machines/perlmutter-nersc/perlmutter_gpu_warpx.profile.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ fi
4848

4949
# an alias to request an interactive batch node for one hour
5050
# for parallel execution, start on the batch node: srun <command>
51-
alias getNode="salloc -N 1 --ntasks-per-node=4 -t 1:00:00 -q interactive -C gpu --gpu-bind=single:1 -c 32 -G 4 -A $proj"
51+
alias getNode="salloc -N 1 --ntasks-per-node=4 -t 1:00:00 -q interactive -C gpu --gpu-bind=none -c 32 -G 4 -A m3239 $proj"
5252
# an alias to run a command on a batch node for up to 30min
5353
# usage: runNode <command>
54-
alias runNode="srun -N 1 --ntasks-per-node=4 -t 0:30:00 -q interactive -C gpu --gpu-bind=single:1 -c 32 -G 4 -A $proj"
54+
alias runNode="srun -N 1 --ntasks-per-node=4 -t 0:30:00 -q interactive -C gpu --gpu-bind=none -c 32 -G 4 -A $proj"
5555

5656
# necessary to use CUDA-Aware MPI and run a job
5757
export CRAY_ACCEL_TARGET=nvidia80

0 commit comments

Comments
 (0)