#! /bin/bash -l ### Set name. #SBATCH --job-name=exp-05-report.html ### Redirect stdout and stderr. #SBATCH --output=/infai/gadzhi0000/bachelors-code/data/exp-grid-steps/slurm.log #SBATCH --error=/infai/gadzhi0000/bachelors-code/data/exp-grid-steps/slurm.err ### Let later steps append their logs to the output and error files. #SBATCH --open-mode=append ### Set partition. #SBATCH --partition=infai_2 ### Set quality-of-service group. #SBATCH --qos=infai ### Set wall-clock time limit per task. #SBATCH --time=0 ### Set memory limit. #SBATCH --mem-per-cpu=3872M ### Set number of cores per task. #SBATCH --cpus-per-task=1 ### Number of tasks in array job. #SBATCH --array=1-1 ### Adjustment to priority ([-2147483645, 2147483645]). #SBATCH --nice=0 ### Send mail? Mail type can be e.g. NONE, END, FAIL, ARRAY_TASKS. #SBATCH --mail-type=END,FAIL,REQUEUE,STAGE_OUT #SBATCH --mail-user=khad.gadzhiev@stud.unibas.ch ### Extra options. ## (not used) source /infai/gadzhi0000/bachelors-code/.venv/bin/activate cd "/infai/gadzhi0000/bachelors-code" "/infai/gadzhi0000/bachelors-code/.venv/bin/python3" "exp.py" "report.html"