Last chance! 50% off unlimited learning
Sale ends in
powered by
Geqrf
torch_geqrf(self)
(Tensor) the input matrix
This is a low-level function for calling LAPACK directly. This function returns a namedtuple (a, tau) as defined in LAPACK documentation for geqrf_ .
LAPACK documentation for geqrf
You'll generally want to use torch_qr instead.
torch_qr
Computes a QR decomposition of input, but without constructing \(Q\) and \(R\) as explicit separate matrices.
input
Rather, this directly calls the underlying LAPACK function ?geqrf which produces a sequence of 'elementary reflectors'.
?geqrf
See LAPACK documentation for geqrf_ for further details.