Home
last modified time | relevance | path

Searched full:lu_pivots (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/external/pytorch/test/
H A Dtest_linalg.py5628 lu_data, lu_pivots = torch.linalg.lu_factor(x)
5631 torch.lu_unpack(lu_data, lu_pivots.long())
5634 p, l, u = torch.lu_unpack(lu_data, lu_pivots, unpack_data=False)
5636 p, l, u = torch.lu_unpack(lu_data, lu_pivots, unpack_pivots=False)
5638 p, l, u = torch.lu_unpack(lu_data, lu_pivots, unpack_data=False, unpack_pivots=False)
7997 LU_data, LU_pivots, info = torch.linalg.lu_factor_ex(A)
7999 return b, A, LU_data, LU_pivots
8009 … b, A, LU_data, LU_pivots = self.lu_solve_test_helper((n, n), (n, k), pivot, device, dtype)
8010 x = torch.lu_solve(b, LU_data, LU_pivots)
8025 … b, A, LU_data, LU_pivots = self.lu_solve_test_helper(A_dims, b_dims, pivot, device, dtype)
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/inductor/aoti_torch/generated/
H A Dc_shim_cpu.h78 …ror aoti_torch_cpu_lu_unpack(AtenTensorHandle LU_data, AtenTensorHandle LU_pivots, int32_t unpack_…
H A Dc_shim_cuda.h87 …or aoti_torch_cuda_lu_unpack(AtenTensorHandle LU_data, AtenTensorHandle LU_pivots, int32_t unpack_…
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DBatchLinearAlgebra.cpp699 "torch.lu_unpack: LU_pivots is expected to be a contiguous tensor of torch.int32 dtype.\n" in TORCH_META_FUNC()
2146 Tensor lu_solve(const Tensor& self, const Tensor& LU_data, const Tensor& LU_pivots) { in lu_solve() argument
2155 return at::linalg_lu_solve(LU_data, LU_pivots, self); in lu_solve()
2158 Tensor& lu_solve_out(const Tensor& self, const Tensor& LU_data, const Tensor& LU_pivots, Tensor& re… in lu_solve_out() argument
2167 return at::linalg_lu_solve_out(result, LU_data, LU_pivots, self); in lu_solve_out()
H A Dnative_functions.yaml9411 - func: lu_solve.out(Tensor self, Tensor LU_data, Tensor LU_pivots, *, Tensor(a!) out) -> Tensor(a!)
9413 - func: lu_solve(Tensor self, Tensor LU_data, Tensor LU_pivots) -> Tensor
9417 - func: lu_unpack(Tensor LU_data, Tensor LU_pivots, bool unpack_data=True, bool unpack_pivots=True)…
9421 - func: lu_unpack.out(Tensor LU_data, Tensor LU_pivots, bool unpack_data=True, bool unpack_pivots=T…
/aosp_15_r20/external/pytorch/torch/csrc/jit/tensorexpr/
H A Dexternal_functions_codegen.cpp1877 const at::Tensor& LU_pivots = tensors[3]; in nnc_aten_lu_solve() local
1879 at::lu_solve_out(r, self, LU_data, LU_pivots); in nnc_aten_lu_solve()
/aosp_15_r20/external/pytorch/torch/
H A Doverrides.py652 torch.lu_unpack: lambda LU_data, LU_pivots, unpack_data=True, unpack_pivots=True: -1,
752 torch.lu_solve: lambda b, LU_data, LU_pivots, out=None: -1,
H A D_torch_docs.py6280 lu_unpack(LU_data, LU_pivots, unpack_data=True, unpack_pivots=True, *, out=None) -> (Tensor, Tensor…
6291 LU_pivots (Tensor): the packed LU factorization pivots
6339 lu_solve(b, LU_data, LU_pivots, *, out=None) -> Tensor
6361LU_pivots (IntTensor): the pivots of the LU factorization from :meth:`~linalg.lu_factor` of size :…
6363 … The batch dimensions of :attr:`LU_pivots` must be equal to the batch dimensions of
H A D_tensor_docs.py3119 lu_solve(LU_data, LU_pivots) -> Tensor
H A D_meta_registrations.py1220 … "torch.lu_unpack: LU_pivots is expected to be a contiguous tensor of torch.int32 dtype.\n"
/aosp_15_r20/external/pytorch/tools/autograd/
H A Dderivatives.yaml1052 - name: lu_unpack(Tensor LU_data, Tensor LU_pivots, bool unpack_data=True, bool unpack_pivots=True)…
1054 LU_pivots: non_differentiable
/aosp_15_r20/external/pytorch/torch/csrc/autograd/
H A DFunctionsManual.cpp5693 // B_grad = P L^{-H} U^{-H} X_grad = lu_solve(X_grad, LU_data, LU_pivots,