Separate Algorithm and Driver - part III (Schur-Eig)#194
Separate Algorithm and Driver - part III (Schur-Eig)#194
Algorithm and Driver - part III (Schur-Eig)#194Conversation
|
After the build completes, the updated documentation will be available here |
|
The lists of available algorithms in the user interface page should also be updated, they still point to the LAPACK-specific algorithms through which should become |
|
GPU failures are again the memory issues. Should be good to go! |
| const LAPACK_EigAlgorithm = Union{LAPACK_Simple, LAPACK_Expert} | ||
| const CUSOLVER_EigAlgorithm = Union{CUSOLVER_Simple} | ||
| const GPU_EigAlgorithm = Union{GPU_Simple} | ||
| const EigAlgorithms = Union{QRIteration, RobustRepresentations} |
There was a problem hiding this comment.
Are these leftovers or aliases? I think LAPACK_Simple is now deprecated?
There was a problem hiding this comment.
They're leftover but i can't delete them without making things breaking I think
There was a problem hiding this comment.
If you're still up for it, maybe add a comment or put them in a deprecations section on this page. If not, we will notice when we delete the deprecated algorithms.
Co-authored-by: Jutho <Jutho@users.noreply.github.com>
Follow-up on #178 and #189, addressing #176.
Same treatment for
eig,eighandschurfunctions.