We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef4b2a commit 4b2d0bdCopy full SHA for 4b2d0bd
SLURM/drape.sh
@@ -0,0 +1,21 @@
1
+#!/bin/bash
2
+#SBATCH --job-name=DeepTreeAttention # Job name
3
+#SBATCH --mail-type=END # Mail events
4
+#SBATCH --mail-user=benweinstein2010@gmail.com # Where to send mail
5
+#SBATCH --account=ewhite
6
+#SBATCH --nodes=1 # Number of MPI ran
7
+#SBATCH --cpus-per-task=1
8
+#SBATCH --mem=80GB
9
+#SBATCH --time=100:00:00 #Time limit hrs:min:sec
10
+#SBATCH --output=/home/b.weinstein/logs/DeepTreeAttention_%j.out # Standard output and error log
11
+#SBATCH --error=/home/b.weinstein/logs/DeepTreeAttention_%j.err
12
+#SBATCH --partition=gpu
13
+#SBATCH --gpus=1
14
+
15
+ulimit -c 0
16
17
+source activate DeepTreeAttention
18
19
+cd ~/DeepTreeAttention/
20
+module load git gcc
21
+python drape_CHM.py
0 commit comments