Skip to content

Instantly share code, notes, and snippets.

@monajalal
Created October 15, 2020 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monajalal/ae4963abc39260ee2afa5976a5a54e10 to your computer and use it in GitHub Desktop.
Save monajalal/ae4963abc39260ee2afa5976a5a54e10 to your computer and use it in GitHub Desktop.
qsub file for running a python code in BU SCC
$ cat moth.qsub
#!/bin/bash -l
#$ -l gpu_c=7.0
#$ -pe omp 8
#$ -l gpus=0.125
# Get an email when it starts, ends, or fails
#$ -m bea
#$ -P ivcgroup
#$ -N m1M_res50
#$ -l h_rt=48:00:00
module load python3/3.6.5
module load cuda/10.0
module load tensorflow/1.13.1
module load miniconda/4.7.5
conda activate deeplabcut
python3.6 mouse.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment