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
Julia's QR factorization calls the Linalg.LAPACK wrapper method:
function geqrt3!(A::StridedMatrix{$elty})
As far as I can see, all other the LAPACK wrappers do: chkstride1() on their arguments, but geqrt3!() for some reason does not. Can geqrt3!() somehow handle stride(::Submatrix,1)>1?. The following experiment suggests it cannot. I think geqrt3!() should also do chkstride1().
Julia's QR factorization calls the Linalg.LAPACK wrapper method:
As far as I can see, all other the LAPACK wrappers do:
chkstride1()
on their arguments, butgeqrt3!()
for some reason does not. Cangeqrt3!()
somehow handlestride(::Submatrix,1)>1
?. The following experiment suggests it cannot. I thinkgeqrt3!()
should also dochkstride1()
.The factorizations differ.
In contrast, the other factorization methods do not accept
B
, e.g.:The text was updated successfully, but these errors were encountered: