Skip to content

Commit

Permalink
add placeholders for variants (deepmodeling#1068)
Browse files Browse the repository at this point in the history
Fix deepmodeling#1065. Fix deepmodeling#1067.

Needs someone to finish the doc...
  • Loading branch information
njzjz authored Dec 19, 2022
1 parent 2089358 commit 6ea1812
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dpgen/generator/arginfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ def model_devi_args() -> List[Variant]:
return [Variant("model_devi_engine", [
Argument("lammps", dict, model_devi_lmp_args(), doc="LAMMPS"),
Argument("amber", dict, model_devi_amber_args(), doc=doc_amber),
Argument("calypso", dict, [], doc="TODO: add doc"),
Argument("gromacs", dict, [], doc="TODO: add doc"),
], default_tag="lammps", optional=True, doc=doc_model_devi_engine)]


Expand Down Expand Up @@ -517,6 +519,8 @@ def fp_style_variant_type_args() -> Variant:
Argument("cp2k", dict, fp_style_cp2k_args()),
Argument("abacus", dict, fp_style_abacus_args()),
Argument("amber/diff", dict, fp_style_amber_diff_args(), doc=doc_amber_diff),
Argument("pwmat", dict, [], doc="TODO: add doc"),
Argument("pwscf", dict, [], doc="TODO: add doc"),
],
optional=False,
doc=doc_fp_style)
Expand Down

0 comments on commit 6ea1812

Please sign in to comment.