Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[develop] Add Gaea C5 to supported platforms #898

Merged
merged 20 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
changes for Gaea C5
  • Loading branch information
Natalie Perlin authored and Natalie Perlin committed Sep 5, 2023
commit 7812ca34722c8a320e8d4ffc73317d065e36eef7
1 change: 1 addition & 0 deletions ush/load_modules_run_task.sh
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ module list

if [ -n "${SRW_ENV:-}" ] ; then
set +u
conda deactivate
conda activate ${SRW_ENV}
set -u
fi
Expand Down
8 changes: 4 additions & 4 deletions ush/machine/gaea_c5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ platform:
QUEUE_HPSS: normal
REMOVE_MEMORY: True
PARTITION_HPSS: eslogin_c5
RUN_CMD_FCST: srun --export=ALL -n ${PE_MEMBER01}
RUN_CMD_POST: srun --export=ALL -n $nprocs
RUN_CMD_PRDGEN: srun --export=ALL -n $nprocs
RUN_CMD_FCST: srun --mpi=pmi2 -n ${PE_MEMBER01}
RUN_CMD_POST: srun --mpi=pmi2 -n $nprocs
RUN_CMD_PRDGEN: srun --mpi=pmi2 -n $nprocs
RUN_CMD_SERIAL: time
RUN_CMD_UTILS: srun --export=ALL --mpi=pmi2 -n $nprocs
RUN_CMD_UTILS: srun --mpi=pmi2 -n $nprocs
SCHED_NATIVE_CMD: --clusters=c5 --partition=batch
SCHED_NATIVE_CMD_HPSS: --clusters=es --partition=eslogin_c5 --export=NONE
PRE_TASK_CMDS: '{ ulimit -s unlimited; ulimit -a; }'
Expand Down
Loading