| #SBATCH --job-name=metatrainRN | |
| #SBATCH --nodes=1 # Request 1 node | |
| #SBATCH --ntasks=1 # Number of tasks (total) | |
| #SBATCH --cpus-per-task=8 # Number of CPU cores (threads) per task | |
| #SBATCH --mem-per-cpu=4G # Memory limit per CPU core (there is no --mem-per-task) | |
| #SBATCH --time=36:00:00 # Job timeout | |
| #SBATCH --gpus-per-node=l4-24g:1 | |
| #SBATCH --nodelist=gcpl4-eu-1 | |
| #SBATCH --output=%j.log # Redirect stdout to a log file | |
| #SBATCH --error=%j.error # Redirect stderr to a separate error log file | |
| srun --nodes 1 --ntasks-per-node 1 -- \ | |
| mkenv -f ../env_mc.yml -- \ | |
| sh -c "cd run_PACS | |
| bash run_my_joint_v13_test.sh 0 | |
| " | |