dpnp.linalg.inv
- dpnp.linalg.inv(input)[source]
Divide arguments element-wise.
For full documentation refer to
numpy.linalg.inv
.Limitations
Input array is supported as
dpnp.ndarray
. Dimension of input array is supported to be equal to2
. Shape of input array is limited byinput.shape[0] == input.shape[1]
,input.shape[0] >= 2
. Otherwise the function will be executed sequentially on CPU.