Skip to content

Commit 0d91c94

Browse files
committed
State limitations for real, imag, rint, round, angle, fabs, fix functions
1 parent b6ba66e commit 0d91c94

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

dpnp/dpnp_iface_mathematical.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,12 @@ def _process_ediff1d_args(arg, arg_name, ary_dtype, ary_sycl_queue, usm_type):
509509
-----
510510
Although the angle of the complex number 0 is undefined, `dpnp.angle(0)` returns the value 0.
511511
512+
Limitations
513+
-----------
514+
Parameters `where' and `subok` are supported with their default values.
515+
Keyword argument `kwargs` is currently unsupported.
516+
Otherwise ``NotImplementedError`` exception will be raised.
517+
512518
See Also
513519
--------
514520
:obj:`dpnp.arctan2` : Element-wise arc tangent of `x1/x2` choosing the quadrant correctly.
@@ -1452,6 +1458,12 @@ def ediff1d(ary, to_end=None, to_begin=None):
14521458
will have a data type that depends on the capabilities of the device
14531459
on which the array resides.
14541460
1461+
Limitations
1462+
-----------
1463+
Parameters `where' and `subok` are supported with their default values.
1464+
Keyword argument `kwargs` is currently unsupported.
1465+
Otherwise ``NotImplementedError`` exception will be raised.
1466+
14551467
See Also
14561468
--------
14571469
:obj:`dpnp.absolute` : Absolute values including `complex` types.
@@ -1504,6 +1516,12 @@ def ediff1d(ary, to_end=None, to_begin=None):
15041516
Otherwise the result is stored there and the return value `out` is
15051517
a reference to that array.
15061518
1519+
Limitations
1520+
-----------
1521+
Parameters `where` and `subok` are supported with their default values.
1522+
Keyword argument `kwargs` is currently unsupported.
1523+
Otherwise ``NotImplementedError`` exception will be raised.
1524+
15071525
See Also
15081526
--------
15091527
:obj:`dpnp.round` : Round to given number of decimals.
@@ -2343,6 +2361,12 @@ def gradient(f, *varargs, axis=None, edge_order=1):
23432361
data type, the returned array has a floating-point data type
23442362
with the same floating-point precision as complex input.
23452363
2364+
Limitations
2365+
-----------
2366+
Parameters `where' and `subok` are supported with their default values.
2367+
Keyword argument `kwargs` is currently unsupported.
2368+
Otherwise ``NotImplementedError`` exception will be raised.
2369+
23462370
See Also
23472371
--------
23482372
:obj:`dpnp.real` : Return the real part of the complex argument.
@@ -3323,6 +3347,12 @@ def prod(
33233347
data type, the returned array has a floating-point data type
33243348
with the same floating-point precision as complex input.
33253349
3350+
Limitations
3351+
-----------
3352+
Parameters `where' and `subok` are supported with their default values.
3353+
Keyword argument `kwargs` is currently unsupported.
3354+
Otherwise ``NotImplementedError`` exception will be raised.
3355+
33263356
See Also
33273357
--------
33283358
:obj:`dpnp.real_if_close` : Return the real part of the input is complex
@@ -3524,6 +3554,7 @@ def real_if_close(a, tol=100):
35243554
35253555
Limitations
35263556
-----------
3557+
Parameters `where' and `subok` are supported with their default values.
35273558
Keyword argument `kwargs` is currently unsupported.
35283559
Otherwise ``NotImplementedError`` exception will be raised.
35293560
@@ -3580,6 +3611,12 @@ def real_if_close(a, tol=100):
35803611
out : dpnp.ndarray
35813612
An array containing the element-wise rounded values.
35823613
3614+
Limitations
3615+
-----------
3616+
Parameters `where' and `subok` are supported with their default values.
3617+
Keyword argument `kwargs` is currently unsupported.
3618+
Otherwise ``NotImplementedError`` exception will be raised.
3619+
35833620
See Also
35843621
--------
35853622
:obj:`dpnp.around` : Equivalent function; see for details.

0 commit comments

Comments
 (0)