#!/bin/bash
#SBATCH -c 1
#SBATCH -p computeq
#SBATCH --mem-per-cpu=2G
#SBATCH -t 1-00:00:00
#SBATCH -o python-%j.out

# Use the following options for gpuq:
##SBATCH -p gpuq
##SBATCH --gres=gpu:1

# Note: sqlite isn't needed with everything
module load python/3.8.7 sqlite/3.25.2

# Use the following modules for gpuq partition:
#module load tensorflow/2.4.1 sqlite/3.25.2

# Replace "someScript.py" with any python script you like
python3 someScript.py
