Skip to content

Commit

Permalink
Fix post_cosmo job
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn committed Feb 22, 2024
1 parent c1ddb46 commit 6c64392
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions jobs/post_cosmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from . import tools, prepare_cosmo

BASIC_PYTHON_JOB = False
BASIC_PYTHON_JOB = True


def logfile_header_template():
Expand Down Expand Up @@ -39,10 +39,11 @@ def runscript_commands_template():
commands = list()

return '\n'.join([
"srun cp -Raf {int2lm_run_src}/. {int2lm_run_dest}/",
"srun cp -Raf {cosmo_run_src}/. {cosmo_run_dest}/",
"srun cp -Raf {cosmo_output_src}/. {cosmo_output_dest}/",
"srun cp -Raf {logs_src}/. {logs_dest}/"
"srun cp -Rafv {int2lm_run_src}/. {int2lm_run_dest}/",
"srun cp -Rafv {cosmo_run_src}/. {cosmo_run_dest}/",
"srun cp -Rafv {cosmo_output_src}/. {cosmo_output_dest}/",
"srun cp -Rafv {logs_src}/. {logs_dest}/",
"unset SLURM_MEM_PER_CPU"
])


Expand Down

0 comments on commit 6c64392

Please sign in to comment.