Created
October 15, 2020 22:16
-
-
Save monajalal/ae4963abc39260ee2afa5976a5a54e10 to your computer and use it in GitHub Desktop.
qsub file for running a python code in BU SCC
This file contains 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
$ 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