Questions about cluster calculation #38
-
|
Dear developers, I'm a learner of your newly released SSCHA code. After running the H3S example, I have a few questions about the cluster calculation:
It will be greatly appreciated if you could spare time to answer my questions. Yours |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Hi,
These operations are iterated. I recommend doing everything manually, as we do not have yet implemented an automatic submission with queue systems different from SLURM. However, if you really need to do automatic calculations (you have really a lot of calculations to run simultaneously and you cannot follow all of them) it could be possible to run the code automatically in your case with a bit of work: If you run the code directly on the same cluster used for the force and energy calculations and want to do everything automatically, you can try to fake the code, using localhost as the hostname for the connection. In this way, the code will submit the calculation on the same computer on which it is running. for example In any case, the submitting command should remain pending until the end of the job (this is why the sscha code uses the --wait option of SLURM). You should try to translate these commands to match your queue system. |
Beta Was this translation helpful? Give feedback.
Hi,
The SSCHA code works in three steps:
These operations are iterated.
The easiest way to do this is to run these steps separately as explained in the PbTe example. This is system independent and you can run on any PC.
Usually, the SSCHA code takes few runs to converge.
I recommend doing everything manually, as we do not have yet implemented an automatic submission with queue systems differe…