#!/bin/bash
#SBATCH --partition=batch
#SBATCH --job-name=blender-4.3.2-case
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH --cpus-per-task=20
#SBATCH --time=30:00

module load blender/4.3.22

blender --background test.blend --engine CYCLES --render-format PNG \
        --use-extension 1 --render-output //rendered --render-frame 1 \
        --threads $SLURM_CPUS_PER_TASK -- --cycles-device CPU
