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
The documentation of the blocked LQ decomposition methods ?gelqt contains a typo. The size of the work array should be mb * m instead of mb * n. If the latter value is used for matrices where m > n, all kinds of segmentation faults or memory corruption errors occur. These disappear completely when a work vector of length mb * m is used instead, independent of the value of mb.
Checklist
I've included a minimal example to reproduce the issue
I'd be willing to make a PR to solve this issue
The text was updated successfully, but these errors were encountered:
Description
The documentation of the blocked LQ decomposition methods
?gelqt
contains a typo. The size of thework
array should bemb * m
instead ofmb * n
. If the latter value is used for matrices wherem > n
, all kinds of segmentation faults or memory corruption errors occur. These disappear completely when awork
vector of lengthmb * m
is used instead, independent of the value ofmb
.Checklist
The text was updated successfully, but these errors were encountered: