-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize code #6
Comments
Note for me: |
Interesting. There should be some OpenFF tools for reading pdb files, I would think? Just to make sure it is this line, try just a single import - it should take 12 hours / 300 files = 2.4 min. We do want to try to use OpenFF tools (or RDKit?) to avoid extra external dependencies. |
Yes, I am also confused by why it takes some long for reading the file. Note for @Yu-Tang-Lin : |
Note for @Yu-Tang-Lin : I guess OPENMM energy minimization is possible since the tutorial also uses GPU to calculate. |
GPU optimization is the last thing to do. The reason for this is that it significantly complicates compilation and installation, and thus should be reserved as the last thing to do. Most important thing is to first push everything down to numpy and scipy operations, rather than be coded with explicit loops without using vector calls. |
Look at ways to optimize the derivative code (and other parts of the code) in python
The text was updated successfully, but these errors were encountered: