-
Notifications
You must be signed in to change notification settings - Fork 9
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
Automate running Psi4-based fits using default installation instructions #305
Comments
Quick thought in passing - the issues leading us to work on #308 arise from one of Psi4's dependencies not being installed, so safeguarding against that particular failure only requires enough walltime for the QC generation step to start, not actually complete. |
It might be overly complicated but would a test which runs a fit but mocks the QC generation stage work? We could have it try and compute a dft single point using our default spec in psi4 (this uses a D3 correction) and if that works return some already computed DFT torsion profile and the fit can continue. The test would fail if the single point failed and that should catch install issues. |
If a single-point energy would capture most "oops something is wrong in the Psi4 installation" errors - yeah I think that could work nicely. In my limited experience, user issues happen either before QC generation (nothing is installed correctly) or in the first 0.1% of the QC generation step (current or past issues with Psi4 installation), so mocking the results of QC generation could be a nice balance of reliability testing and test duration. |
My understanding of the QC generation call stack is:
Our existing xTB-based integration test exercises 1-3 in a way that should apply to both xTB and Psi4. But for steps 4+5 it only tests the xTB-specific pathways. This means that we currently don't have coverage of QCEngine calling Psi4, and Psi4 calling stuff like dftd3. So I think we should end up with good coverage if we add a Psi4 single point calculation, called via QCengine. |
Unrelated but the call stack reminds me of the star wars assassins-hiring-assassins video. |
Description
I don't think any of the tests run a full fit using the default QC spec (i.e. not using XTB as a shortcut). I could be wrong.
These fits are slow but important to ensure reliability - if something breaks, we ought to know about it prior a user report.
The text was updated successfully, but these errors were encountered: