This is a version of lu_factor()
that does not perform error checks unless check_errors
= True. It also returns the info
tensor returned by LAPACK’s getrf.
Note
When the inputs are on a CUDA device, this function synchronizes only when check_errors
= True.
Warning
This function is “experimental” and it may change in a future PyTorch release.
A (Tensor) – tensor of shape (*, m, n) where * is zero or more batch dimensions.
pivot (bool, optional) – Whether to compute the LU decomposition with partial pivoting, or the regular LU decomposition. pivot
= False not supported on CPU. Default: True.
check_errors (bool, optional) – controls whether to check the content of infos
and raise an error if it is non-zero. Default: False.
out (tuple, optional) – tuple of three tensors to write the output to. Ignored if None. Default: None.
A named tuple (LU, pivots, info).
Access comprehensive developer documentation for PyTorch
View Docs TutorialsGet in-depth tutorials for beginners and advanced developers
View Tutorials ResourcesFind development resources and get your questions answered
View ResourcesRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4