torch.EigShape
export type EigShape<S extends Shape> =
ValidateBatchedSquareMatrix<S> extends { readonly __isShapeError: true }
? ValidateBatchedSquareMatrix<S>
: S;Sextends ShapeOutput shape of eigenvalue decomposition. Input must be square matrix.