Skip to content

Commit 0eabd93

Browse files
committed
Remove numpy compatibility note from dpnp.linalg.solve() implementation
1 parent 932fb3f commit 0eabd93

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

dpnp/linalg/dpnp_iface_linalg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,6 @@ def solve(a, b):
17131713
b_shape = b.shape
17141714
b_ndim = b.ndim
17151715

1716-
# compatible with numpy>=2.0
17171716
if b_ndim == 0:
17181717
raise ValueError("b must have at least one dimension")
17191718
if b_ndim == 1:

0 commit comments

Comments
 (0)