@@ -509,6 +509,12 @@ def _process_ediff1d_args(arg, arg_name, ary_dtype, ary_sycl_queue, usm_type):
509
509
-----
510
510
Although the angle of the complex number 0 is undefined, `dpnp.angle(0)` returns the value 0.
511
511
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
+
512
518
See Also
513
519
--------
514
520
: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):
1452
1458
will have a data type that depends on the capabilities of the device
1453
1459
on which the array resides.
1454
1460
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
+
1455
1467
See Also
1456
1468
--------
1457
1469
:obj:`dpnp.absolute` : Absolute values including `complex` types.
@@ -1504,6 +1516,12 @@ def ediff1d(ary, to_end=None, to_begin=None):
1504
1516
Otherwise the result is stored there and the return value `out` is
1505
1517
a reference to that array.
1506
1518
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
+
1507
1525
See Also
1508
1526
--------
1509
1527
:obj:`dpnp.round` : Round to given number of decimals.
@@ -2343,6 +2361,12 @@ def gradient(f, *varargs, axis=None, edge_order=1):
2343
2361
data type, the returned array has a floating-point data type
2344
2362
with the same floating-point precision as complex input.
2345
2363
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
+
2346
2370
See Also
2347
2371
--------
2348
2372
:obj:`dpnp.real` : Return the real part of the complex argument.
@@ -3323,6 +3347,12 @@ def prod(
3323
3347
data type, the returned array has a floating-point data type
3324
3348
with the same floating-point precision as complex input.
3325
3349
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
+
3326
3356
See Also
3327
3357
--------
3328
3358
: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):
3524
3554
3525
3555
Limitations
3526
3556
-----------
3557
+ Parameters `where' and `subok` are supported with their default values.
3527
3558
Keyword argument `kwargs` is currently unsupported.
3528
3559
Otherwise ``NotImplementedError`` exception will be raised.
3529
3560
@@ -3580,6 +3611,12 @@ def real_if_close(a, tol=100):
3580
3611
out : dpnp.ndarray
3581
3612
An array containing the element-wise rounded values.
3582
3613
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
+
3583
3620
See Also
3584
3621
--------
3585
3622
:obj:`dpnp.around` : Equivalent function; see for details.
0 commit comments