File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ main() {
15
15
# Machine and project
16
16
readonly MACHINE=pm-cpu
17
17
# BEFORE RUNNING: CHANGE this to your project
18
- readonly PROJECT=" e3sm "
18
+ readonly PROJECT=" $( sacctmgr show user $USER format=DefaultAccount | tail -n1 | tr -d ' ' ) "
19
19
20
20
# Simulation
21
21
readonly COMPSET=" WCYCL1850"
@@ -43,7 +43,7 @@ readonly GET_REFCASE=TRUE
43
43
# readonly RUN_REFDATE="" # same as MODEL_START_DATE for 'branch', can be different for 'hybrid'
44
44
45
45
# Set paths
46
- readonly CASE_ROOT=" ${PSCRATCH} /e3sm-scratch/ ${MACHINE} /${CASE_NAME} "
46
+ readonly CASE_ROOT=" ${PSCRATCH} /E3SMv3 /${CASE_NAME} "
47
47
readonly CODE_ROOT=" ${HOME} /E3SMv3/code/${CHECKOUT} "
48
48
49
49
# Sub-directories
@@ -417,6 +417,12 @@ then
417
417
# Number of cores per node (machine specific)
418
418
if [ " ${MACHINE} " == " pm-cpu" ]; then
419
419
ncore=128
420
+ elif [ " ${MACHINE} " == " chrysalis" ]; then
421
+ ncore=64
422
+ elif [ " ${MACHINE} " == " compy" ]; then
423
+ ncore=40
424
+ elif [ " ${MACHINE} " == " anvil" ]; then
425
+ ncore=36
420
426
else
421
427
echo ' ERROR: MACHINE = ' ${MACHINE} ' is not supported for custom PE layout.'
422
428
exit 400
You can’t perform that action at this time.
0 commit comments