Skip to content

Commit

Permalink
Changed default nodesize and memory to 48 and 192GB respectively
Browse files Browse the repository at this point in the history
as these are the default values for gadi
  • Loading branch information
aidanheerdegen committed Feb 6, 2020
1 parent a458593 commit f49898e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions payu/subcommands/run_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def runcmd(model_type, config_path, init_run, n_runs, lab_path, reproduce):

# TODO: Create drivers for servers
platform = pbs_config.get('platform', {})
max_cpus_per_node = platform.get('nodesize', 16)
max_ram_per_node = platform.get('nodemem', 32)
max_cpus_per_node = platform.get('nodesize', 48)
max_ram_per_node = platform.get('nodemem', 192)

# Adjust the CPUs for any model-specific settings
# TODO: Incorporate this into the Model driver
Expand Down

0 comments on commit f49898e

Please sign in to comment.