Skip to content

Commit

Permalink
Add additional aliases for parallelization flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Gresch committed Sep 22, 2020
1 parent 56650fd commit 1a41823
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions aiida_quantumespresso/calculations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ class BasePwCpInputGenerator(CalcJob):
)
)
_PARALLELIZATION_FLAG_ALIASES = {
'nimage': ['ni'],
'npools': ['nk'],
'nband': ['nb'],
'ntg': ['nt'],
'ndiag': ['northo', 'nd']
'nimage': ['ni', 'nimages'],
'npools': ['nk', 'npool'],
'nband': ['nb', 'nbgrp', 'nband_group'],
'ntg': ['nt', 'ntask_groups'],
'ndiag': ['northo', 'nd', 'nproc_diag', 'nproc_ortho']
}

# Additional files that should always be retrieved for the specific plugin
Expand Down

0 comments on commit 1a41823

Please sign in to comment.