Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/bin/bash
## CUDA slurm submission script
# 1 hour job:
#SBATCH --time=01:00:00
# 1 node
#SBATCH --nodes=1
## if you want whole node
#SBATCH --exclusive
##Select GPU type you want: (K80 or K20)
# asking for 1 GPU
#SBATCH --gres=gpu:K20:1
module load cuda/last
#launching executable, e.g.
python gputest.py