You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LAPACK routines for triangular, symmetric, Hermitian matrices, e.g. dsyev, only read and write to upper or lower part of storage. This is why we have to manage UPLO enum noted in #74. This is basically performance issue, but we should nod expose such partially invalid storage even if additional runtime cost is inevitable.
Alternative
We may resolve this problem by introducing a partially written storage for this issue. But it will be better to use packed storage #226.
The text was updated successfully, but these errors were encountered:
Inherit from #74, related to #226
LAPACK routines for triangular, symmetric, Hermitian matrices, e.g. dsyev, only read and write to upper or lower part of storage. This is why we have to manage
UPLO
enum noted in #74. This is basically performance issue, but we should nod expose such partially invalid storage even if additional runtime cost is inevitable.Alternative
We may resolve this problem by introducing a partially written storage for this issue. But it will be better to use packed storage #226.
The text was updated successfully, but these errors were encountered: