Some problems with Cluster.py #110
-
Hi developers, Here is the version with no problem |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Dear @zhaowb12138 , For a guide and an example of how to configure the new calculator, see section 3.6 of the guide: https://raw.githubusercontent.com/SSCHAcode/python-sscha/master/python-sscha.pdf However, we should probably still support ASE in the cluster module as we usually do not use the broken I/O module there. I will raise an issue on GitHub to fix the compatibility in the next release. I suggest you anyway to update cluster.py to the new version since we fixed some bugs in the cluster module and improved its functionality, reducing the connections spawn to the clusters (speeding up the jobs submission), and please let us know if with the new cellconstructor calculator for expresso works correctly or you have problems. Thanks again for the report, |
Beta Was this translation helpful? Give feedback.
Dear @zhaowb12138 ,
Thanks for reporting. Yes, the latest version of Cluster.py is compatible with a custom calculator for espresso defined in
cellconstructor.calculators.Espresso rather than the ASE one. This is because of some new features introduced in the latest version of the official ASE calculators (specifically regarding the I/O strategy with parallelization) which conflicted with our modules, generating bugs at execution time.
For this reason, we decided to support our own calculators for espresso. It works very similarly to the ASE one. Most things should be exactly the same, and you should be able to obtain the same results just by replacing the import of the ASE espresso calcu…