cluster:gpuwork

Sleep Revolution computing cluster


The first step for users is to make sure their working environment fits their needs, might have to be reconfigure.
User can install different version of Python and all necessary modules for their work.
We recommend using Python virtual environment, but of course Python modules can be installed without it
Creating your virtual environment

  1. Python3 has a module venv which can be used to create your environment (python3 -m venv myProject)
  2. Another way is to install virtualenv with Pip (pip install virtualenv)
  3. Miniconda or Ancaonda

User can also download and install :


An example setup for Torch
  • python3 -m venv myproject
  • source myproject/bin/activate
  • pip install torch wheel


Please make sure your script can communicate with the GPU, do a test-script before running your project

cmdDescr
squeueShow all jobs on the queue
sinfoInformation about the cluster
sbatch <job.sh>Submit job
sacctMy jobs
srunRun job interactively
scancel <id>kill job with <id>
nvidia-smiinfo about GPU


The template script file looks like this
#!/bin/bash
#SBATCH --account=staff
#SBATCH --job-name=MyJob
#SBATCH --gpus-per-node=1
#SBATCH --mem-per-cpu=2G
#SBATCH --partition=main
#SBATCH --output=myBatch.log

Installed software and drivers

* NVIDIA V100 GPU drivers
* CuDA toolkit [version 12.2]
* Python 3.10.12
* pip 22.0.2

Additional information
  • cluster/gpuwork.txt
  • Last modified: 2025/03/27 09:27
  • by bjorn