torch.lu¶
- torch.lu(*args, **kwargs)[源代码]¶
计算矩阵或矩阵批次
A
的 LU 分解。返回包含A
的 LU 分解和主元的元组。如果pivot
设置为True
,则进行主元运算。警告
torch.lu()
已弃用,推荐使用torch.linalg.lu_factor()
和torch.linalg.lu_factor_ex()
。torch.lu()
将在未来的 PyTorch 版本中移除。LU, pivots, info = torch.lu(A, compute_pivots)
应替换为LU, pivots = torch.linalg.lu_factor(A, compute_pivots)
LU, pivots, info = torch.lu(A, compute_pivots, get_infos=True)
应替换为LU, pivots, info = torch.linalg.lu_factor_ex(A, compute_pivots)
注意
批次中每个矩阵的返回置换矩阵由大小为
min(A.shape[-2], A.shape[-1])
的 1 索引向量表示。pivots[i] == j
表示在算法的第i
步中,第i
行与第j-1
行进行了置换。CPU 不支持
pivot
=False
的 LU 分解,尝试这样做会抛出错误。但是,CUDA 支持pivot
=False
的 LU 分解。如果
get_infos
为True
,则此函数不会检查分解是否成功,因为分解的状态存在于返回元组的第三个元素中。在 CUDA 设备上,对于大小小于或等于 32 的方阵批次,由于 MAGMA 库中的错误(参见 magma issue 13),奇异矩阵会重复进行 LU 分解。
可以使用
torch.lu_unpack()
导出L
、U
和P
。
警告
仅当
A
为满秩时,此函数的梯度才是有限的。这是因为 LU 分解仅在满秩矩阵处可微。此外,如果A
接近非满秩,则梯度将数值不稳定,因为它取决于 和 的计算。- 参数
- 返回
包含张量的元组,包括
factorization (Tensor):大小为 的分解
pivots (IntTensor):大小为 的主元。
pivots
存储行的所有中间换位。最终置换perm
可以通过对i = 0, ..., pivots.size(-1) - 1
应用swap(perm[i], perm[pivots[i] - 1])
来重建,其中perm
最初是 个元素的单位置换(本质上这就是torch.lu_unpack()
正在做的事情)。infos (IntTensor, 可选):如果
get_infos
为True
,则这是一个大小为 的张量,其中非零值指示矩阵或每个小批量的分解是否成功或失败
- 返回类型
(Tensor, IntTensor, IntTensor (可选))
示例
>>> A = torch.randn(2, 3, 3) >>> A_LU, pivots = torch.lu(A) >>> A_LU tensor([[[ 1.3506, 2.5558, -0.0816], [ 0.1684, 1.1551, 0.1940], [ 0.1193, 0.6189, -0.5497]], [[ 0.4526, 1.2526, -0.3285], [-0.7988, 0.7175, -0.9701], [ 0.2634, -0.9255, -0.3459]]]) >>> pivots tensor([[ 3, 3, 3], [ 3, 3, 3]], dtype=torch.int32) >>> A_LU, pivots, info = torch.lu(A, get_infos=True) >>> if info.nonzero().size(0) == 0: ... print('LU factorization succeeded for all samples!') LU factorization succeeded for all samples!