Skip to content

Commit d35b040

Browse files
committed
Remove some outdated comments
Original NumPy Commit: f306e941ffb0bc49604f5507aa8ea614d933cfd0
1 parent 04e0cb9 commit d35b040

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

array_api_strict/linalg.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ def diagonal(x: Array, /, *, offset: int = 0) -> Array:
8989
return Array._new(np.diagonal(x._array, offset=offset, axis1=-2, axis2=-1))
9090

9191

92-
# Note: the keyword argument name upper is different from np.linalg.eigh
9392
def eigh(x: Array, /) -> EighResult:
9493
"""
9594
Array API compatible wrapper for :py:func:`np.linalg.eigh <numpy.linalg.eigh>`.
@@ -106,7 +105,6 @@ def eigh(x: Array, /) -> EighResult:
106105
return EighResult(*map(Array._new, np.linalg.eigh(x._array)))
107106

108107

109-
# Note: the keyword argument name upper is different from np.linalg.eigvalsh
110108
def eigvalsh(x: Array, /) -> Array:
111109
"""
112110
Array API compatible wrapper for :py:func:`np.linalg.eigvalsh <numpy.linalg.eigvalsh>`.

0 commit comments

Comments
 (0)