Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: updated pytorch container version to nvcr.io/nvidia/pytorch:25.02-py3-igpu

...

Code Block
#!/bin/bash
#SBATCH --job-name=notebook             #name of the job
#SBATCH --time=00-01:00:00              #time limit in dd-hh:mm:ss
#SBATCH --gres=gpu:1                    #GPU allocation
#SBATCH --mem=80gb                      #memory allocation
#SBATCH --output=notebook-%j.out        #output file
#SBATCH --error=notebook-%j.err         #log file
#SBATCH --container-image='docker://nvcr.io/nvidia/pytorch:2125.1202-py3-igpu'

jupyter lab --allow-root --port=8888 --no-browser --ip=0.0.0.0 --IdentityProvider.token='' --NotebookApp.allow_origin='*' --notebook-dir=/

...