torch.LUShape
export type LUShape<S extends Shape> =
ValidateBatchedSquareMatrix<S> extends { readonly __isShapeError: true }
? ValidateBatchedSquareMatrix<S>
: S;Sextends ShapeOutput shape of LU decomposition. Returns tuple of [L, U, pivots] shapes.