Spaces:
Configuration error
Configuration error
File size: 674 Bytes
6a1d13f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
#!/bin/bash
# job name
#SBATCH -J demo_foundhand
# partition
#SBATCH --partition=ssrinath-gcondo --gres=gpu:1 --gres-flags=enforce-binding
#SBATCH --account=ssrinath-gcondo
# ensures all allocated cores are on the same node
#SBATCH -N 1
# cpu cores
#SBATCH --ntasks-per-node=4
# memory per node
#SBATCH --mem=32G
# runtime
#SBATCH -t 240:00:00
# output
#SBATCH -o out/demo.out
# error
#SBATCH -e err/demo.err
# email notifiaction
# SBATCH --mail-type=ALL
module load miniconda3/23.11.0s
source /oscar/runtime/software/external/miniconda3/23.11.0/etc/profile.d/conda.sh
conda activate handdiff
cd $HOME/hdd/FoundHand_demo
echo Directory is `pwd`
python -u app.py
|