-
Notifications
You must be signed in to change notification settings - Fork 475
Add PSI_API for C_DTRSV #3311
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
Add PSI_API for C_DTRSV #3311
Conversation
| void C_DSYRK(char uplo, char trans, int n, int k, double alpha, double* a, int lda, double beta, double* c, int ldc); | ||
| void C_DSYR2K(char uplo, char trans, int n, int k, double alpha, double* a, int lda, double* b, int ldb, double beta, | ||
| double* c, int ldc); | ||
| PSI_API |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the record, can we get a comment saying why this was added to the API?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually I do not know why only certain functions are available via the API. Anyway, I revise the generalized minimal residual algorithm in forte and one of the steps is to solve a triangular system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @lcyyork. Not all functions are available through the C++ API just to keep it slim. And Tibor's suggestion to document the "why" is handy for a contact point in case we want to alter the interface.
I'm going to update the branch to probe why Azure doesn't seem to be responding. Nothing to do with the PRs content in particular.
Description
Add PSI_API for C_DTRSV.
User API & Changelog headlines
Dev notes & details
Questions
Checklist
Status