We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1cd0f6 commit f7cfc2aCopy full SHA for f7cfc2a
dpnp/linalg/dpnp_iface_linalg.py
@@ -1624,6 +1624,13 @@ def solve(a, b):
1624
--------
1625
:obj:`dpnp.dot` : Returns the dot product of two arrays.
1626
1627
+ Notes
1628
+ -----
1629
+ The `b` array is only treated as a shape (M,) column vector if it is
1630
+ exactly 1-dimensional. In all other instances it is treated as a stack
1631
+ of (M, K) matrices. Previously `b` would be treated as a stack of (M,)
1632
+ vectors if ``b.ndim`` was equal to ``a.ndim - 1``.
1633
+
1634
Examples
1635
1636
>>> import dpnp as dp
0 commit comments