Skip to content

Latest commit

 

History

History
76 lines (46 loc) · 2.03 KB

lisa.md

File metadata and controls

76 lines (46 loc) · 2.03 KB

LISA GPU-island

Account creation

Ask for an account by sending an email to [email protected]. Add the following information in your email. Note that a (short) support letter from your advisor is mandatory to get approved.
It should normally take 1-2 days.

Hostname

login-gpu.lisa.surfsara.nl to access GPU nodes.

The head node has GPUs. You can debug your code there for 15 min.

Useful things to have in your .bashrc

module load CUDA
module load cuDNN

Pick the version you want for CUDA by looking at what's available module avail CUDA

Get a node with slurm

srun -u --pty --time=HH:MM:SS -p gpu bash -i

--time maximum of 5 days (120:00:00)
-p gpu get a node with GPUs

However, the preferred way of interacting with the job queue is to submit a job using the interactive session:

srun --time=HH:MM:SS -p gpu myjob.sh

slurm will provide a job id. Use that id if you want to remove yourself from the queue with scancel [job id].

Monitor node usage

See which nodes are available:

sinfo -p gpu

See who is in the queue:

squeue -p gpu

Disk space

You will be allocated free space 200GB on your home folder.

There are also temporary storage space and project space available. Check this page.

Credit system

You can monitor your credits through accinfo, which gives an overview of your account information and your credit budget, or accuse which shows your monthly usage.

Make sure that you don't have a credit of 0, otherwise ask Boy Menist [email protected] to fix your account.

At first, 10k credits are assigned to new users. If you run out of credits (i.e. negative number), ask the helpdesk for more credits and put Boy Menist on cc.

One hour of computation on a GPU node is equivalent to 48 credits.

More info

Read the starting guide for more info.