We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A possible enhancement will be to display the version number of the linear solver (if available). The following header
This is MadNLP version v0.8.0, running with cuDSS
could be replaced by
This is MadNLP version v0.8.0, running with cuDSS v0.1.0
The text was updated successfully, but these errors were encountered:
I think we can simply include this info in introduce(::AbstractLinearSolver). E.g.,
introduce(::AbstractLinearSolver)
introduce(::CHOLMODSolver) = "cholmod v$(SuiteSparse.CHOLMOD.BUILD_VERSION)"
Sorry, something went wrong.
For HSL linear solvers, I added a way to detemine the version number: https://github.com/JuliaSmoothOptimizers/HSL.jl/blob/main/src/C/libhsl.jl#L29
For cuDSS, I implemented CUDSS.version() here.
CUDSS.version()
Successfully merging a pull request may close this issue.
A possible enhancement will be to display the version number of the linear solver (if available).
The following header
could be replaced by
The text was updated successfully, but these errors were encountered: