You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#SBATCH --job-name=move_first_checkpoints_to_tar # job name
3
+
#SBATCH --ntasks=1 # number of MP tasks
4
+
#SBATCH --nodes=1
5
+
#SBATCH --cpus-per-task=4 # number of cores per tasks
6
+
#SBATCH --hint=nomultithread # we get physical cores not logical
7
+
#SBATCH --time=20:00:00 # maximum execution time (HH:MM:SS)
8
+
#SBATCH --output=logs/%x-%j.out # output file name
9
+
#SBATCH --account=six@cpu
10
+
#SBATCH --partition=cpu_p1
11
+
12
+
# DEBUG
13
+
# SLURM_ARRAY_TASK_ID=0 # 0-149
14
+
15
+
16
+
# you have to also pass --array=0-<desired_number>%1 as an sbatch flag to compress everything, eg sbatch --array=0-149%1 move_first_150_checkpoints_to_store.slurm tr11b-1B3-ml 150
0 commit comments