Skip to content

Commit

Permalink
automatically retry failed QM single points using built in qcengine m…
Browse files Browse the repository at this point in the history
…ethod (#279)
  • Loading branch information
jthorton authored Aug 4, 2023
1 parent ef63c9f commit 9726275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openff/bespokefit/executor/services/qcgenerator/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _task_config() -> Dict[str, Any]:
)
)

return dict(ncores=n_cores, nnodes=1, memory=round(max_memory, 3))
return dict(ncores=n_cores, nnodes=1, memory=round(max_memory, 3), retries=3)


def _select_atom(atoms: List[Atom]) -> int:
Expand Down

0 comments on commit 9726275

Please sign in to comment.