-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[src][jupyterlabs-conda] fix up and document start_jupyterlab.sh
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# Start either a part of interactive or batch sesions | ||
# Hardcoded assumption: /speed-scratch/$USER/speed-hpc/src/jupyterlabs | ||
srun --mem=16G --gpus=1 -p pt --mail-type=ALL /speed-scratch/$USER/speed-hpc/src/jupyterlabs/run_jupyterlab.sh | ||
# Hardcoded assumptions to adjust as necessary: | ||
# path: /speed-scratch/$USER/speed-hpc/src/jupyter/jupyterlabs-conda | ||
# memory: 16GB | ||
# GPUs: 1 | ||
# partition: pt | ||
# CPUs: 8 | ||
# notifications: ALL | ||
# If calling from sbatch, make sure these don't exceed those from sbatch | ||
srun \ | ||
--mem=16G --gpus=1 -p pt -c 8 --mail-type=ALL \ | ||
/speed-scratch/$USER/speed-hpc/src/jupyter/jupyterlabs-conda/run_jupyterlab.sh |