Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ develop-eggs
.installed.cfg
lib
lib64
uv.lock

# Installer logs
pip-log.txt
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ forcefields = [
"quippy-ase>=0.9.14; python_version < '3.12'",
"sevenn>=0.9.3",
"torchdata<=0.7.1", # TODO: remove when issue fixed
"torch_sim==0.4.1",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move to its own optional import block since the module is currently distinct from the forcefields

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

]
approxneb = ["pymatgen-analysis-diffusion>=2024.7.15"]
ase = ["ase>=3.26.0"]
Expand Down
5 changes: 5 additions & 0 deletions src/atomate2/torchsim/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""TorchSim module for atomate2."""

from atomate2.torchsim.core import TSIntegrateMaker, TSOptimizeMaker, TSStaticMaker

__all__ = ["TSIntegrateMaker", "TSOptimizeMaker", "TSStaticMaker"]
Loading
Loading