- load module
module load singularity/3.9.5- pull container
singularity pull tensorflow-notebook.sif docker://jupyter/tensorflow-notebook- submit job
qsub hpc_kyk_notebook.sh- get notebook url
cat stdout
| #!/bin/bash | |
| #PBS -N notebook | |
| #PBS -j oe | |
| #PBS -q GPU-1 | |
| #PBS -l select=1:ncpus=26:ngpus=1 | |
| source /etc/profile.d/modules.sh | |
| module purge | |
| module load singularity | |
| cd ${PBS_O_WORKDIR} | |
| singularity run --nv ./tensorflow-notebook.sif >stdout 2>&1 |