#!/bin/bash # Here you should put your own project id #SBATCH -A Project_ID # This example asks for 1 core #SBATCH -n 1 # Ask for a suitable amount of time. Remember, this is the time the Jupyter notebook will be available! HHH:MM:SS. #SBATCH --time=06:20:00 # If you use the GPU nodes uncomment the following lines #SBATCH --gpus=l40s:1 # Clear the environment from any previously loaded modules module purge > /dev/null 2>&1 # Load the module environment suitable for the job ml MATLAB/2023a.Update4 ml GCCcore/11.3.0 Python/3.10.4 ml CUDA/11.7.0 # Source the environment source matlabenv/bin/activate # Start JupyterLab jupyter lab --no-browser --ip $(hostname)