Created
January 14, 2017 19:04
-
-
Save JackBurdick/747604c22dffc1f41a5362ed9b4df875 to your computer and use it in GitHub Desktop.
sbatch check gpu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#SBATCH -t 20 # time limit of job, in minutes.. just using now for testing | |
#SBATCH -p gpu # which queue to submit to | |
#SBATCH -n 40 # TEST FROM DR M | |
#SBATCH -N 2 # TEST FROM DR M | |
#SBATCH -o gpu_python_%j.out # File to which STDOUT will be written | |
#SBATCH -e gpu_python_%j.err # File to which STDERR will be written | |
#SBATCH --mail-type=END # Type of email notification- BEGIN,END,FAIL,ALL | |
#SBATCH [email protected] # Email to which notifications will be sent | |
THEANO_FLAGS=mode=FAST_RUN,device=gpu,floatX=float32 python test_GPU_or_CPU.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment