#!/bin/bash
#SBATCH --time=03:15:00
#SBATCH --mem-per-cpu=1024
#SBATCH --job-name=cuda-acc
#SBATCH --partition=gpu
#SBATCH --gres=gpu
#SBATCH --error=/work/[groupname]/[username]/job.%J.err
#SBATCH --output=/work/[groupname]/[username]/job.%J.out
module load cuda/8.0 compiler/pgi/16
./acc-app.exe
Submitting Pre-emptable Jobs
Some GPU hardware is reserved by various groups for priority access. While the group that has
purchased the priority access will always have immediate access, HCC makes these nodes
available opportunistically. When not otherwise utilized,
jobs can run on these resources with the
limitation that they may be pre-empted (i.e. killed) at any time
.
To submit jobs to these resources, add the following to your srun or sbatch command:
--partition=guest_gpu --gres=gpu
In order to properly utilize pre-emptable resources, your job must be able to support
some type of checkpoint/resume functionality.
Holland Computing Center
| 118 Schorr Center, Lincoln NE 68588 |
[email protected]
|
402-472-5041
See something wrong? Help us fix it by
contributing
!