Skip to content

Commit 25b62b7

Browse files
committed
feat: decrease number of jobs
1 parent de91430 commit 25b62b7

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

runner.sh

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#!/bin/bash
22

3-
SEEDS=(123 234 345 456)
3+
SEEDS=(123)
44

5-
CDB_VALUES=(1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7)
5+
CDB_VALUES=(1.0 1.3 1.5 1.7)
66

77
PORTFOLIOS=(
8-
"CMAES SPSOL OPOA2015"
98
"G3PCX LMCMAES SPSO"
109
"MADDE JDE21 NL_SHADE_RSP"
1110
)
@@ -25,8 +24,6 @@ for SEED in "${SEEDS[@]}"; do
2524

2625
for CDB in "${CDB_VALUES[@]}"; do
2726

28-
echo "Submitting single algorithm study with: SEED=${SEED} | CDB=${CDB}"
29-
sbatch single_algorithm_CDB_study.slurm $SEED $CDB
3027
echo "Submitting CDB study with: SEED=${SEED} | CDB=${CDB}"
3128
sbatch CDB_study.slurm $SEED $CDB
3229

@@ -37,9 +34,6 @@ for SEED in "${SEEDS[@]}"; do
3734
echo "Submitting comprehensive study with: SEED=${SEED}"
3835
sbatch comprehensive_study.slurm $SEED
3936

40-
echo "Submitting degenerate case study with: SEED=${SEED}"
41-
sbatch dummy_case.slurm $SEED
42-
4337
done
4438

45-
echo "All jobs submitted!"
39+
echo "All jobs submitted!"

0 commit comments

Comments
 (0)