Skip to content

Commit

Permalink
Update memory req
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Dec 6, 2023
1 parent 13100c5 commit a7608e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiida_aimall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
A plugin to interface AIMAll with AiiDA
"""

__version__ = "0.2.21"
__version__ = "0.2.22"
2 changes: 1 addition & 1 deletion aiida_aimall/workchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def g16_opt(self):
builder.code = self.inputs.g16_code
builder.wfxgroup = self.inputs.wfxgroup
builder.metadata.options.resources = {"num_machines": 1, "tot_num_mpiprocs": 4}
builder.metadata.options.max_memory_kb = 384000
builder.metadata.options.max_memory_kb = 6400 * 1.25 * 1024
builder.metadata.options.max_wallclock_seconds = 604800
process_node = self.submit(builder)
g16_opt_group = load_group("g16_opt")
Expand Down

0 comments on commit a7608e8

Please sign in to comment.