torch.InverseShape
export type InverseShape<S extends Shape> =
ValidateBatchedSquareMatrix<S> extends { readonly __isShapeError: true }
? ValidateBatchedSquareMatrix<S>
: S;Sextends ShapeOutput shape of matrix inverse. Input must be square matrix (or batched square matrices).