UW Hyak
Start here: SSH & Login Node Usage | Hyak
Sign in
ssh [email protected]
Example get GPU:
salloc -A amath -p ckpt --gpus-per-node=a40:1 --mem=10G --time=1:00:00 --job-name=LULESH_testing
Link: Hyak
check GPU resource
sinfo -p ckpt-all -O nodehost,cpusstate,freemem,gres,gresused -S nodehost | grep -v null
Get an interactive mode
salloc -A amath -p ckpt --time=4:00:00 --mem=10G -c 4
Go to share space (do not use your 10GB)
cd /gscratch/amath
Install Miniconda3
Make sure you do this to install conda in shared space:
bash Miniconda3-latest-Linux-x86_64.sh -p /gscratch/amath/zztu/miniconda3
Calling Jupyter Notebook
Install jupyter notebook first Hyak
conda install -c conda-forge notebook
Set password
jupyter-notebook --generate-config
then
jupyter-notebook password
Last, run the jupyter
jupyter notebook --port 9195 --ip 0.0.0.0
Open a new window
ssh -L 9195:n3097:9195 [email protected]
where first 9195 can choose from you. The last 9195 are providing in console. n3097
also from console.
Link: Jupyter Notebooks | Hyak