The cluster compute.ru.is is a linux environment, connect with SSH
The easy way to connect and do your work the cluster is with an editor on your local computer, for example Visual Studio Code, but other editors can be used, if they can make a SSH connection to a remote host.
To setup and connect to the cluster with Visual Studio Code using SSH extension, see how to.
Open a terminal to log-in ssh user@compute.ru.is
In Windows you can for example use Putty or Powershell to connect
In Mac or Linux search for terminal
Each user has his home folder, for student the path is [/student/<username>]
Staff members and researchers are on a different filesystem [/home/<username>]
The template script file looks like this
#!/bin/bash
#SBATCH --account=student
#SBATCH --job-name=MyJob
#SBATCH --gpus-per-node=1
#SBATCH --mem-per-cpu=2G
#SBATCH --partition=basic
#SBATCH --output=myBatch.log
This example file is in each user's home folder, to view the content use the command cat myJob.sh
cmd | Descr |
---|---|
squeue | Show all jobs on the queue |
sinfo | Information about the cluster |
sbatch <job.sh> | Submit job |
sacct | My jobs |
srun | Run job interactively |
scancel <id> | kill job with <id> |
send email to (help@ru.is) with your full name
Slurm
Visual Studio Code can also be used through SSH
Use this email help@ru.is for access requests, inquiries etc.
Using GPU with python